/*--------------------------------------------------------------
  # Mobile Nav
  --------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    visibility: hidden;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
    -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.7;
    cursor: pointer;
}

.mobile-nav__content {
    position: relative;
    width: 300px;
    background-color: var(--thm-black);
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    z-index: 10;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.mobile-nav__close:hover {
    background-color: var(--thm-base);
}

.mobile-nav__close i:before {
    position: relative;
    display: inline-block;
    transform: rotate(0deg);
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}




.mobile-nav-search-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.mobile-nav-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.mobile-nav-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 52px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #909090;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 60px;
    border-radius: 5px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.mobile-nav-search-box .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    height: 52px;
    color: #ffffff;
    font-size: 25px;
    background: rgba(var(--thm-base-rgb), 1.0);
    text-align: center;
    border: 0px solid #e7e7e8;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all 500ms ease 0s;
}

.mobile-nav-search-box .search-form button i {
    position: relative;
    top: 0px;
}

.mobile-nav-search-box .search-form input[type="text"]:focus {
    color: var(--thm-black);
}

.mobile-nav-search-box .search-form input[type="text"]:focus+button,
.mobile-nav-search-box .search-form button:hover {
    color: #ffffff;
    background-color: var(--thm-black);
}

.mobile-nav-search-box .search-form input::-webkit-input-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.mobile-nav-search-box .search-form input:-moz-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.mobile-nav-search-box .search-form input::-moz-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.mobile-nav-search-box .search-form input:-ms-input-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}




.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 20px;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 30px;
    color: #ffffff;
    font-size: 15px;
    font-family: var(--thm-font-2);
    font-weight: 500;
    height: 46px;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>ul>li>a {
    font-size: 14px;
    font-weight: 400;
}

.mobile-nav__content .main-menu__list>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
    color: var(--thm-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
    width: 30px;
    height: 30px;
    background: rgba(var(--thm-primary-rgb), 0.2);
    border: none;
    outline: none;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--thm-base);
}


.mobile-nav__content .home-showcase__title {
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 0px;
}





.mobile-nav__contact {
    position: relative;
    display: block;
    margin-top: 40px;
    margin-bottom: 30px;
}

.mobile-nav__contact li {
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #ffffff;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-black);
}

.mobile-nav__contact li>i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 0%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 12px;
    margin-right: 10px;
}


.mobile-nav__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-nav__social a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 10px;
}

.mobile-nav__social a:hover {
    color: var(--thm-base);
    background-color: #ffffff;
}



/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
    display: none !important;
}




/*--------------------------------------------------------------
# Main Header Css
--------------------------------------------------------------*/
.main-header {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 99;
}

.main-menu {
    position: relative;
    display: block;
}

.main-menu__wrapper {
    position: relative;
    display: block;
}

.main-menu__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-box {
    display: block;
    float: right;
    margin-left: auto;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}




.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
    margin-left: 45px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    position: relative;
    color: #ffffff;
    font-size: 19px;
    line-height: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-family: var(--thm-font);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
    color: var(--thm-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    padding: 10px 0px 10px;
    background-color: var(--thm-black);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    transform-origin: top;
    transform-style: preserve-3d;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    z-index: 99;
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
    display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
    transition: all 300ms ease;
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    padding: 0 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
    border-top: 0px solid rgba(255, 255, 255, 0.20);
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
    position: relative;
    display: flex;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    letter-spacing: 0;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    padding: 9px 0px;
    -webkit-transition: 500ms;
    transition: 500ms;
    font-family: var(--thm-font-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    z-index: 1;
}

.main-menu .main-menu__list>li>ul>li:last-child>a,
.main-menu .main-menu__list>li>ul>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:last-child>a {
    border-bottom: none;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
    color: #909398;
    padding-left: 3px;
}



.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    top: 0;
    left: 100%;
    border-left: 15px solid transparent;
    background-color: transparent;
}

.main-menu .main-menu__list>li>ul>li>ul:before,
.stricky-header .main-menu__list>li>ul>li>ul:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-black);
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}




/*-------------------------------------
  # Mega Menu Css
  --------------------------------------*/
.main-menu__wrapper .main-menu__list>.megamenu {
    position: static;
}

.main-menu__wrapper .main-menu__list>.megamenu>ul {
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
}

.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
    padding: 0 !important;
}

.megamenu-content-box {
    position: relative;
    display: block;
}

.megamenu-content-box .container {
    max-width: 1200px !important;
}

.megamenu-content-box__inner {
    background-color: #fff;
    padding: 40px 35px 40px;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.mobile-nav__wrapper .megamenu-content-box__inner {
    padding: 15px 0px;
    background-color: rgba(0, 0, 0, 0);
}

.megamenu-content-box .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.home-showcase__image {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-black);
}

.home-showcase__image>img {
    width: 100%;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.home-showcase__image:hover>img {
    opacity: 0.25;
}

.home-showcase__image:hover .home-showcase__buttons {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.home-showcase__buttons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom center;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
}

.home-showcase__buttons .home-showcase__buttons__item.top {
    opacity: 0;
    transform: translateY(-50px);
    transition: all .4s ease-in-out .1s;
}

.home-showcase__image:hover .home-showcase__buttons .home-showcase__buttons__item.top {
    opacity: 1;
    transform: translateY(0px);
    transition: all .4s ease-in-out .2s;
}


.home-showcase__buttons__item {
    width: 150px;
    line-height: 50px !important;
    text-align: center;
}

.home-showcase__buttons__item:hover {
    color: #ffffff;
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
    margin-top: 10px;
}

.home-showcase__title {
    position: relative;
    display: block;
    background-color: rgba(var(--thm-base-rgb, 53, 84, 209), 0.05);
    padding: 11px 0;
    margin: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--thm-base);
    text-transform: uppercase;
    margin-top: 15px;
}

.mobile-nav__wrapper .home-showcase__title {
    color: #ffffff;
}

.mobile-nav__wrapper .megamenu-content-box .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}


/** Megamenu style2**/
.megamenu-box {
    position: relative;
    display: block;
}

.megamenu-box .container {
    max-width: 900px !important;
}

.megamenu-box__inner {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 10px 20px 10px;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.megamenu-box .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0px;
}

.megamenu-box ul {
    position: relative;
}

.megamenu-box ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(var(--thm-base-rgb, 53, 84, 209), 0.05);
}

.megamenu-box ul li:last-child {
    border-bottom: none;
}

.megamenu-box ul li a {
    position: relative;
    display: block;
    padding-left: 20px;
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 50px;
    font-weight: 500;
    text-align: left;
    text-transform: capitalize;
    letter-spacing: normal;
    font-family: var(--thm-font-2);
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    z-index: 1;
}

.megamenu-box ul li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0px;
    right: 0;
    background-color: var(--thm-base);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.megamenu-box ul li:hover a:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.megamenu-box ul li:hover a {
    color: #ffffff;
}



.mobile-nav__wrapper .megamenu-box ul {}

.mobile-nav__wrapper .megamenu-box ul li {
    margin-bottom: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__wrapper .megamenu-box ul li a {
    position: relative;
    display: block;
    padding-left: 0;
    line-height: 46px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--thm-font-2);
    font-weight: 400;
    transition: all 500ms ease;
}

.mobile-nav__wrapper .megamenu-box .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0px;
}

.mobile-nav__wrapper .megamenu-box__inner {
    padding: 0px 0px;
    background-color: transparent;
    box-shadow: none;
}

.mobile-nav__wrapper .megamenu-box__inner .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}




/*-------------------------------------
    Stricky Header Css
  ---------------------------------------*/
.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}



.stricky-header.stricky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}


** .mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 0px;
}



.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-base);
    cursor: pointer;
}

.mobile-nav__buttons a+a {
    margin-left: 10px;
}

.mobile-nav__buttons a:hover {
    color: var(--thm-base);
}

* .main-menu .mobile-nav__toggler {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 28px;
    line-height: 28px;
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--thm-black);
}





.stricky-header.main-menu {
    background-color: #090d30;
}

.stricky-header .main-menu-box {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.stricky-header .main-menu__wrapper {
    background-color: #090d30;
}

.stricky-header .main-menu__wrapper-inner {
    background-color: #090d30;
    justify-content: space-between;
}






/*----------------------------------------
    Main Header Style1
  ---------------------------------------*/
.main-header-style1 {
    position: relative;
    display: block;
    background-color: #090d30;
}

.main-menu-style1 {
    position: relative;
    display: block;
}

.main-menu-style1 .main-menu__wrapper {
    position: relative;
}

.main-menu-style1 .main-menu__wrapper .container {
    max-width: 1730px;
    padding: 0 15px;
}

.main-menu-style1 .main-menu__wrapper-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 10;
}

.main-menu-style1-left {
    position: relative;
    display: block;
}

.logo-box-style1 {
    width: 8rem;
    position: relative;
    display: block;
}

.logo-box-style1 a {
    position: relative;
    display: inline-block;
}




.main-menu-style1-right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-style1-right .main-menu-box {
    position: static;
    display: block;
    float: left;
}


.box-search-style1 {
    position: relative;
    display: inline-block;
    margin-left: 16px;
    margin-right: 27px;
    line-height: 0;
}

.box-search-style1 a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 25px;
    line-height: 25px;
}





.side-content-button {
    position: relative;
    display: block;
}

.side-content-button a {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.side-content-button a .line {
    position: relative;
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background-color: var(--thm-base);
    margin: 3px 0;
    transition: all 500ms ease;
}

.side-content-button a:hover .line {
    background-color: #ffffff;
}

.side-content-button a .line.two {
    width: 30px;
    transition: all 300ms ease;
}

.side-content-button a .line.three {
    width: 20px;
    transition: all 500ms ease;
}

.side-content-button a:hover .line.two {
    width: 40px;
}

.side-content-button a:hover .line.three {
    width: 40px;
}



.phone-number-box-style1 {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 25px;
    padding-left: 26px;
}

.phone-number-box-style1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 5px;
    width: 1px;
    background-color: #ffffff;
    opacity: 0.40;
}

.phone-number-box-style1 .icon {
    position: relative;
    display: block;
    width: 55px;
    font-size: 45px;
}

.phone-number-box-style1 .text {
    position: relative;
    display: block;
}

.phone-number-box-style1 h5 {
    color: #ffffff;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    margin: 0 0 7px;
}

.phone-number-box-style1 a {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.phone-number-box-style1 a:hover {
    color: var(--thm-base);
}


.stricky-header .main-menu__wrapper-inner .box-search-style1 {
    display: none;
}

.stricky-header .main-menu__wrapper-inner .phone-number-box-style1 {
    display: none;
}

.stricky-header .main-menu__wrapper-inner .side-content-button {
    display: none;
}

.stricky-header .main-menu__list>li {
    padding-top: 30px;
    padding-bottom: 30px;
}



/*----------------------------------------
    Main Header Style2
  ---------------------------------------*/
.main-header-style2 {
    position: relative;
}

.main-header-style2__top {
    position: relative;
    display: block;
    background-color: #090d30;
    padding: 7px 0 8px;
}

.main-header-style2__top-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main-header-style2-top-left {
    position: relative;
    display: flex;
    align-items: center;
}


.phone-number-box-style2 {
    position: relative;
    display: block;
}

.phone-number-box-style2 h3 {
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--thm-font);
}

.phone-number-box-style2 h3 a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.phone-number-box-style2 h3 a:hover {
    color: var(--thm-base);
}

.consultation-box {
    position: relative;
    display: block;
    padding-left: 60px;
}

.consultation-box::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 30px;
    bottom: -12px;
    width: 1px;
    background-color: #ffffff;
    opacity: 0.30;
}

.consultation-box p {
    color: #ffffff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}

.consultation-box p a {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin-left: 11px;
}

.consultation-box p a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    right: 0;
    height: 1px;
    background-color: var(--thm-base);
}

.consultation-box p a:hover {
    color: #ffffff;
}



.main-header-style2-top-right {
    position: relative;
    display: flex;
    align-items: center;
}

.header-social-link-style1 {
    position: relative;
    display: block;
    padding-right: 0px;
}

.header-social-link-style1 ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.header-social-link-style1 ul li {
    position: relative;
    display: block;
    float: left;
    margin-right: 30px;
}

.header-social-link-style1 ul li:last-child {
    margin-right: 0;
}

.header-social-link-style1 ul li a {
    color: rgba(255, 255, 255, 0.60);
    font-size: 16px;
    line-height: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-social-link-style1 ul li a:hover {
    color: var(--thm-base);
}



.main-menu-style2 {
    position: relative;
    display: block;
    background-color: #ffffff;
}

.main-menu-style2 .main-menu__wrapper-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 10;
}

.main-menu-style2-left {
    position: relative;
    display: block;
}


.main-menu-style2-right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-style2 .main-menu__list>li {
    padding-top: 40px;
    padding-bottom: 40px;
}

.main-menu-style2 .main-menu__list>li>a {
    color: #000000;
}

.main-menu-style2 .main-menu__list>li.current>a,
.main-menu-style2 .main-menu__list>li:hover>a {
    color: var(--thm-base);
}

.main-menu-style2-right .box-search-style1 a {
    color: #000000;
}



.side-content-button-style2 {
    position: relative;
    display: block;
}

.side-content-button-style2 a {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    width: 50px;
    height: 50px;
    background-color: #00a0eb;
    border-radius: 50%;
    padding-right: 15px;
    transition: all 500ms ease;
}

.side-content-button-style2 a:hover {
    background-color: var(--thm-base);
}

.side-content-button-style2 a .line {
    position: relative;
    display: block;
    width: 10px;
    height: 2px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 500ms ease;
}

.side-content-button-style2 a:hover .line {
    position: relative;
}

.side-content-button-style2 a .line.two {
    width: 20px;
    transition: all 300ms ease;
}

.side-content-button-style2 a:hover .line {
    width: 20px;
}



.stricky-header--style2.main-menu {
    background-color: #ffffff;
}

.stricky-header--style2 .main-menu__wrapper {
    background-color: #ffffff;
}

.stricky-header--style2 .main-menu__wrapper-inner {
    background-color: #ffffff;
    justify-content: space-between;
}

.stricky-header--style2 .main-menu__list>li>a {
    color: #000000;
}

.stricky-header--style2 .main-menu__wrapper-inner .box-search-style1 {
    display: block;
}



/*----------------------------------------
    Main Header Style3
  ---------------------------------------*/
.main-header-style3 {
    position: absolute;
    top: 0;
    left: 0;
}

.main-header-style3 .main-menu-style2 {
    background-color: transparent;
}

.main-header-style3 .main-menu-style2 .container {
    max-width: 100%;
    padding: 0 80px;
}

.main-header-style3 .main-menu-style2 .main-menu__list>li {
    padding-top: 50px;
    padding-bottom: 50px;
}

.main-header-style3 .main-menu-style2 .main-menu__list>li>a {
    color: #ffffff;
}

.main-header-style3 .main-menu-style2 .main-menu__list>li.current>a,
.main-header-style3 .main-menu-style2 .main-menu__list>li:hover>a {
    color: var(--thm-base);
}

.main-header-style3 .main-menu-style2-right .box-search-style1 a {
    color: #ffffff;
}

.main-header-style3 .main-menu-style2-right .side-content-button-style2 a {
    border: 1px solid #ffffff;
    background-color: transparent;
}






.stricky-header--style3.main-menu {
    background-color: #090d30;
}

.stricky-header--style3 .main-menu__wrapper {
    background-color: #090d30;
}

.stricky-header--style3 .main-menu__wrapper-inner {
    background-color: #090d30;
    justify-content: space-between;
}

.stricky-header--style3 .main-menu__list>li>a {
    color: #ffffff;
}

.stricky-header--style3 .main-menu__wrapper-inner .box-search-style1 {
    display: block;
}

.stricky-header--style3 .main-menu-style2-right .box-search-style1 a {
    color: #ffffff;
}



/*----------------------------------------
    Main Header Style4
  ---------------------------------------*/
.main-header-style4 {
    position: relative;
    display: block;
    margin-bottom: -40px;
}

.main-header-style4 .main-header-style2__top {
    background-color: #1f1e3b;
}

.main-header-style4 .main-menu-style2 {
    background-color: transparent;
}

.main-header-style4 .main-menu-style2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 40px;
    right: 0;
    background-color: #1f1e3b;
    z-index: -1;
}

.main-header-style4 .main-menu-style2 .main-menu__wrapper-inner {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 0 30px;
}


.main-header-style4 .consultation-box::before {
    top: 0px;
    bottom: 0px;
}

.main-header-style4 .header-social-link-style1:before {
    top: 1px;
    bottom: 1px;
}

.main-header-style4 .main-menu-style2-right .side-content-button-style2 a {
    border: 1px solid #000000;
    background-color: transparent;
}

.main-header-style4 .main-menu-style2-right .side-content-button-style2 a .line {
    background-color: #000000;
}





.stricky-header--style4.main-menu {
    background-color: #ffffff;
}

.stricky-header--style4 .main-menu__wrapper {
    background-color: #ffffff;
}

.stricky-header--style4 .main-menu__wrapper-inner {
    background-color: #ffffff;
    justify-content: space-between;
}

.stricky-header--style4 .main-menu__list>li>a {
    color: #000000;
}

.stricky-header--style4 .main-menu__wrapper-inner .box-search-style1 {
    display: block;
}

.stricky-header--style4 .main-menu-style2-right .box-search-style1 a {
    color: #000000;
}




/*----------------------------------------
    Main Header Style5
  ---------------------------------------*/
.main-header-style5 {
    position: relative;
    display: block;
    padding-top: 10px;
    margin-bottom: -30px;
}

.main-header-style5::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 30px;
    right: 0;
    background-color: #0a1937;
    z-index: -1;
}

.main-header-style5 .border-top-box {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px dashed rgba(84, 112, 135, 0.50);
}

.main-header-style5 .border-bottom-box {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    height: 1px;
    border-bottom: 1px dashed rgba(84, 112, 135, 0.50);
}

.main-header-style5__top {
    position: relative;
    display: block;
    padding: 26px 0;
}

.main-header-style5__top-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main-header-style5-top-left {
    position: relative;
    display: block;
}


.main-header-style5-top-right {
    position: relative;
    display: block;
}


.header-contact-info-style1 {
    position: relative;
    display: block;
}

.header-contact-info-style1 ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.header-contact-info-style1 ul li {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    margin-right: 40px;
    padding-right: 40px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.header-contact-info-style1 ul li:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background-image: -moz-linear-gradient(90deg, rgb(255, 255, 255, 0.05) 5%, rgb(255, 255, 255, 0.40) 50%, rgb(255, 255, 255, 0.05) 95%);
    background-image: -webkit-linear-gradient(90deg, rgb(255, 255, 255, 0.05) 5%, rgb(255, 255, 255, 0.40) 50%, rgb(255, 255, 255, 0.05) 95%);
    background-image: -ms-linear-gradient(90deg, rgb(255, 255, 255, 0.05) 5%, rgb(255, 255, 255, 0.40) 50%, rgb(255, 255, 255, 0.05) 95%);
}

.header-contact-info-style1 ul li:last-child:before {
    display: none;
}

.header-contact-info-style1 ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.header-contact-info-style1 ul li .icon {
    position: relative;
    display: block;
    width: 60px;
}

.header-contact-info-style1 ul li .icon span {
    position: relative;
    display: block;
    line-height: 0;
}

.header-contact-info-style1 ul li .icon span:before {
    position: relative;
    display: inline-block;
    color: #e5b90a;
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
}

.header-contact-info-style1 ul li .text {
    position: relative;
    display: block;
    flex: 1;
}

.header-contact-info-style1 ul li .text p {
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    margin: 0 0 6px;
}

.header-contact-info-style1 ul li .text a {
    color: #d6d5e8;
    font-size: 20px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-contact-info-style1 ul li:last-child .text a {
    color: #f22c39;
    font-size: 28px;
    font-weight: 600;
}

.header-contact-info-style1 ul li .text a:hover {
    color: var(--thm-base);
}




.main-menu-style5 {
    position: relative;
    display: block;
    background-color: transparent;
}

.main-menu-style5 .main-menu__wrapper-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-right: 20px;
    border-radius: 5px;
    z-index: 10;
}

.main-menu-style5 .main-menu__wrapper-inner .bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: repeat-x;
    background-size: contain;
    border-radius: 5px;
    z-index: -1;
}

.main-menu-style5-left {
    position: relative;
    display: block;
}

.main-header-style5 .main-menu-style5 .main-menu__list>li {
    position: relative;
    padding-top: 21px;
    padding-bottom: 21px;
    padding-left: 35px;
    padding-right: 35px;
    margin: 0;
}

.main-header-style5 .main-menu-style5 .main-menu__list>li:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    bottom: 15px;
    width: 1px;
    background-color: #cccccd;
}

.main-header-style5 .main-menu-style5 .main-menu__list>li:first-child::before {
    display: none;
}

.main-header-style5 .main-menu-style5 .main-menu__list>li:last-child::after {
    display: none;
}

.main-header-style5 .main-menu-style5 .main-menu__list>li:after {
    content: "";
    position: absolute;
    top: 15px;
    right: 0;
    bottom: 15px;
    width: 1px;
    background-color: #ffffff;
}

.main-header-style5 .main-menu-style5 .main-menu__list>li>a {
    color: #000000;
}

.main-header-style5 .main-menu-style5 .main-menu__list>li.current>a,
.main-header-style5 .main-menu-style5 .main-menu__list>li:hover>a {
    color: var(--thm-base);
}

.main-header-style5 .main-menu-style5 .box-search-style1 a {
    color: #000000;
}


.main-menu-style5-right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-style5-right .side-content-button-style2 a {
    width: 45px;
    height: 45px;
    padding-right: 11px;
    background-color: transparent;
    border: 1px solid #000000;
}

.main-menu-style5-right .side-content-button-style2 a .line {
    background-color: #000000;
}


.stricky-header--style5 .main-menu-style5-left {
    margin-right: auto;
}

.stricky-header--style5 .main-menu-style5-right .side-content-button-style2 a {
    border-color: #ffffff;
}

.stricky-header--style5 .main-menu-style5-right .side-content-button-style2 a .line {
    background-color: #ffffff;
}



/*----------------------------------------
    Main Header Style6
  ---------------------------------------*/
.main-header-style6 {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
}

.main-menu-style6 .main-menu__wrapper .container {
    max-width: 100%;
    padding: 0 80px;
}

.main-menu-style6 .main-menu__wrapper-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: #ffffff;
    padding: 0 30px;
    border-radius: 5px;
}

.main-menu-style6 .main-menu__wrapper-inner:before {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -10px;
    right: 20px;
    height: 10px;
    background-color: #ffffff;
    opacity: 0.20;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}


.main-menu-style6-left {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-style6-left .main-menu-box {
    display: flex;
    align-items: center;
    float: left;
    margin-right: auto;
    margin-left: 120px;
}


.main-header-style6 .main-menu-style6 .main-menu__list>li {
    padding-top: 30px;
    padding-bottom: 30px;
}

.main-header-style6 .main-menu-style6 .main-menu__list>li>a {
    color: #000000;
}

.main-header-style6 .main-menu-style6 .main-menu__list>li.current>a,
.main-header-style6 .main-menu-style6 .main-menu__list>li:hover>a {
    color: var(--thm-base);
}


.main-header-style6 .main-menu-style6 .box-search-style1 {
    margin-left: 27px;
    margin-right: 0;
}

.main-header-style6 .main-menu-style6 .box-search-style1 a {
    color: #000000;
}


.main-header-style6 .main-menu-style6 .side-content-button-style2 a {
    border: 1px solid #000000;
    background-color: transparent;
    margin-left: 20px;
    width: 45px;
    height: 45px;
    padding-right: 11px;
}

.main-header-style6 .main-menu-style6 .side-content-button-style2 a .line {
    background-color: #000000;
}





.main-menu-style6-right {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-number-box-style1--instyle2 {
    margin-left: 0px;
    padding-left: 0px;
}

.phone-number-box-style1--instyle2:before {
    display: none;
}

.phone-number-box-style1--instyle2 .icon {
    width: 45px;
    color: var(--thm-base);
    font-size: 35px;
}

.phone-number-box-style1--instyle2 .icon span {
    font-weight: 400;
}

.phone-number-box-style1--instyle2 h5 {
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 1px;
}

.phone-number-box-style1--instyle2 a {
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 600;
    font-family: var(--thm-font)-2;
}


.main-menu-style6-right .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-left: 30px;
}

.main-menu-style6-right .btn-box a {
    line-height: 50px;
    padding: 0 30px;
}



.stricky-header--style6.main-menu {
    background-color: #ffffff;
}

.stricky-header--style6 .main-menu__wrapper {
    background-color: #ffffff;
}

.stricky-header--style6 .main-menu__wrapper-inner {
    background-color: #ffffff;
    justify-content: space-between;
}

.stricky-header--style6 .main-menu__list>li>a {
    color: #000000;
}

.stricky-header--style6 .main-menu__wrapper-inner .box-search-style1 {
    display: none;
}

.stricky-header--style6 .main-menu__wrapper-inner .main-menu-style6-left {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.stricky-header--style6 .main-menu__wrapper-inner .main-menu-style6-left .main-menu-box {
    display: flex;
    align-items: center;
    float: right;
    margin-right: 0;
    margin-left: auto;
}

.stricky-header--style6 .main-menu__wrapper-inner .main-menu-style6-right {
    display: none;
}


.stricky-header--style6 .main-menu__wrapper-inner .side-content-button-style2 a {
    display: none;
}

/*--------------------------------------------------------------
# Banner Style1 Css
--------------------------------------------------------------*/
.banner-style1 {
    position: relative;
    display: block;
    background-color: #090d30;
}

.banner-style1__inner {
    position: relative;
    display: block;
    max-width: 1730px;
    padding: 0 15px;
    margin: 0 auto;
}

.banner-style1__inner-content {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
}

.banner-style1 .banner-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: left top;
    height: 100% !important;
}

.banner-style1 .container {
    max-width: 100%;
    padding: 0;
}

.banner-style1__content {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 115px 0 246.22px;
    z-index: 2;
}

.banner-style1__content-inner {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
    float: right;
    padding-right: 80px;
}

.banner-style1__content .big-title {
    position: relative;
    display: block;
}

.banner-style1__content .big-title h2 {
    color: #ffffff;
    font-size: 58px;
    line-height: 1.2em;
    font-weight: 900;
    text-transform: capitalize;
    font-family: var(--thm-font-2);
}

.banner-style1__content .text {
    position: relative;
    display: block;
    padding: 17px 0 43px;
}

.banner-style1__content .text p {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.banner-style1__content .btn-box {
    display: block;
}




/*--------------------------------------------------------------
# Banner Style2 Css
--------------------------------------------------------------*/
.banner-style2 {
    position: relative;
    display: block;
    background-color: #090d30;
    z-index: 10;
}

.banner-style2__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    z-index: -1;
}

.banner-style2 .container {
    max-width: 1400px;
}


.banner-style2__content {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 2;
}

.banner-style2__content-inner {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
    padding: 240px 0 230px;
    z-index: 2;
}

.banner-style2__content .sub-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: rgba(9, 13, 48, 0.50);
    padding: 4px 30px 3px;
    border-radius: 16px;
    margin-bottom: 23px;
}

.banner-style2__content .sub-title h5 {
    color: #ffffff;
    font-size: 15px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}



.banner-style2__content .big-title {
    position: relative;
    display: block;
}

.banner-style2__content .big-title h2 {
    color: #ffffff;
    font-size: 63px;
    line-height: 1.2em;
    font-weight: 900;
    text-transform: capitalize;
    font-family: var(--thm-font-2);
}

.banner-style2__content .text {
    position: relative;
    display: block;
    padding: 26px 0 43px;
}

.banner-style2__content .text p {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.banner-style2__content .btn-box {
    display: flex;
    align-items: center;
}

.banner-style2__content .btn-box .icon {
    position: relative;
    display: block;
    margin-left: 55px;
}




.schedule-appointment-box {
    position: absolute;
    bottom: 30px;
    right: 0;
    display: block;
    max-width: 770px;
    width: 100%;
}

.schedule-appointment-box .banner-style2__img-box {
    position: absolute;
    left: 0;
    bottom: -40px;
}

.schedule-appointment-box__form {
    position: relative;
    display: block;
    max-width: 355px;
    width: 100%;
    float: right;
    background-image: -moz-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.schedule-appointment-box__form .top-title {
    position: relative;
    display: block;
    text-align: center;
    padding: 31px 0 21px;
    z-index: 1;
}

.schedule-appointment-box__form .top-title h2 {
    color: #ffffff;
    font-size: 40px;
    line-height: 30px;
    font-weight: 700;
    font-style: italic;
    margin: 0 0 5px;
    font-family: var(--thm-font-4);
}

.schedule-appointment-box__form .top-title h2 span {
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    font-family: var(--thm-font);
}

.schedule-appointment-box__form .top-title .icon {
    position: relative;
    display: block;
    padding-top: 14px;
}


.schedule-appointment-box__form form {
    position: relative;
    display: block;
    padding: 0px 30px 30px;
}

.schedule-appointment-box__form form .row {
    --bs-gutter-x: 10px;
}

.schedule-appointment-box__form form .form-group {
    position: relative;
    display: block;
    padding-bottom: 10px;
}

.schedule-appointment-box__form form .input-box {
    position: relative;
    display: block;
}

.schedule-appointment-box__form form input[type="text"],
.schedule-appointment-box__form form input[type="email"],
.schedule-appointment-box__form form textarea {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.20);
    border: 0px solid #ffffff;
    width: 100%;
    height: 45px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.schedule-appointment-box__form form input[type="text"]:focus,
.schedule-appointment-box__form form input[type="email"]:focus,
.schedule-appointment-box__form form textarea:focus {
    outline: none;
}

.schedule-appointment-box__form form textarea {
    height: 115px;
    padding-top: 9px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
}

.schedule-appointment-box__form form input[type="text"]::-webkit-input-placeholder {
    color: #ffffff;
}

.schedule-appointment-box__form form input[type="text"]:-moz-placeholder {
    color: #ffffff;
}

.schedule-appointment-box__form form input[type="text"]::-moz-placeholder {
    color: #ffffff;
}

.schedule-appointment-box__form form input[type="text"]:-ms-input-placeholder {
    color: #ffffff;
}


.schedule-appointment-box__form form input[type="email"]::-webkit-input-placeholder {
    color: #ffffff;
}

.schedule-appointment-box__form form input[type="email"]:-moz-placeholder {
    color: #ffffff;
}

.schedule-appointment-box__form form input[type="email"]::-moz-placeholder {
    color: #ffffff;
}

.schedule-appointment-box__form form input[type="email"]:-ms-input-placeholder {
    color: #ffffff;
}

.schedule-appointment-box__form form .button-box {
    position: relative;
    display: block;
    padding-top: 10px;
}

.schedule-appointment-box__form form .button-box button {
    width: 100%;
    border-radius: 0;
}

.schedule-appointment-box__form form .button-box button:hover {
    color: #0d0c20;
}

.schedule-appointment-box__form form .button-box button:after {
    background-color: #0d0c20;
    background-image: none;
    border-radius: 0;
}

.schedule-appointment-box__form form .button-box button:before {
    background-color: #ffffff;
}



/*--------------------------------------------------------------
# Banner Style3 Css
--------------------------------------------------------------*/
.banner-style3 {
    position: relative;
    display: block;
    background-color: #0a1c40;
    z-index: 10;
}

.banner-style3__content {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 2;
}

.banner-style3__content-inner {
    position: relative;
    display: block;
    max-width: 450px;
    width: 100%;
    padding: 146px 0 220px;
    z-index: 2;
}

.banner-style3__content .big-title {
    position: relative;
    display: block;
}

.banner-style3__content .big-title h2 {
    color: #ffffff;
    font-size: 50px;
    line-height: 0.9em;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--thm-font-2);
}

.banner-style3__content .big-title h2 span {
    font-size: 32px;
    font-weight: 500;
}

.banner-style3__content .btn-box {
    position: relative;
    display: block;
}

.banner-style3__content .text {
    position: relative;
    display: block;
    padding: 22px 0 43px;
}

.banner-style3__content .text ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.banner-style3__content .text ul li {
    position: relative;
    display: block;
    padding-left: 35px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    font-family: var(--thm-font-2);
}

.banner-style3__content .text ul li+li {
    margin-top: 10px;
}

.banner-style3__content .text ul li .icon {
    position: absolute;
    top: 0;
    left: 0;
    color: #feb831;
    font-size: 25px;
}



.schedule-appointment-box--style2 {
    bottom: 0px;
    right: 0;
    max-width: 750px;
}

.schedule-appointment-box--style2 .shape1 {
    position: absolute;
    top: -170px;
    left: -130px;
}

.schedule-appointment-box--style2 .img-box {
    position: absolute;
    left: -280px;
    bottom: 20px;
    z-index: -1;
}

.schedule-appointment-box--style2 .banner-style2__img-box {
    position: absolute;
    left: 0;
    bottom: 0px;
}


.schedule-appointment-box--style2 .schedule-appointment-box__form {
    background-image: none;
    background-color: #1776dc;
}

.schedule-appointment-box--style2 .schedule-appointment-box__form form {
    padding: 0px 30px 40px;
}

.schedule-appointment-box--style2 .schedule-appointment-box__form .top-title {
    padding: 31px 0 19px;
}

.schedule-appointment-box--style2 .schedule-appointment-box__form form input[type="text"],
.schedule-appointment-box--style2 .schedule-appointment-box__form form input[type="email"],
.schedule-appointment-box--style2 .schedule-appointment-box__form form textarea {
    position: relative;
    display: block;
    background: #0569d1;
    border: 1px solid #2f84e0;
}



.schedule-appointment-box--style2 .schedule-appointment-box__form form .select-box {
    position: relative;
    display: block;
    width: 100%;
}

.schedule-appointment-box--style2 .schedule-appointment-box__form form .nice-select {
    position: relative;
    display: block;
    background-color: #0569d1;
    border-radius: 0px;
    border: solid 1px #2f84e0;
    width: 100%;
    height: 45px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 43px;
    outline: none;
    padding-left: 20px;
    padding-right: 20px;
    transition: all 0.2s ease-in-out;
    font-family: var(--thm-font);
}

.schedule-appointment-box--style2 .schedule-appointment-box__form form .nice-select:after {
    position: absolute;
    content: "\e926";
    font-family: 'icomoon' !important;
    color: #2f84e0;
    font-size: 12px;
    top: 0px;
    right: 25px;
    bottom: 0;
    margin: 0px;
    font-weight: 400;
    border: none !important;
    transform: rotate(0deg) !important;
}

.schedule-appointment-box--style2 .schedule-appointment-box__form form .nice-select .list {
    background-color: var(--thm-black);
    border-radius: 0px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
}

.schedule-appointment-box--style2 .schedule-appointment-box__form form .nice-select .option {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 40px;
    min-height: 40px;
}



/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider-style1 {
    background-color: #f7f1eb;
}

.main-slider .swiper-slide {
    position: relative;
}

.main-slider .container {
    position: relative;
    padding-top: 148px;
    padding-bottom: 170px;
    z-index: 30;
}

.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 1500ms ease-in;
    transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
}

.main-slider .image-layer:before {
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0;
    width: 100%;
    content: "";
    background-color: #000000;
    opacity: 0.10;
    display: none;
    z-index: -1;
}

.main-slider .main-slider-content {
    position: relative;
    display: block;
    width: 100%;
}

.main-slider .main-slider-content__inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-slider .main-slider-content .big-title {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .big-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider .main-slider-content .big-title h2 {
    color: #0e2735;
    font-size: 65px;
    line-height: 1.1em;
    font-weight: 900;
    text-transform: capitalize;
}


.main-slider .main-slider-content .text {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 19px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
    transform: perspective(400px) rotateY(0deg) translateX(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider .main-slider-content .text p {
    color: #1a1d21;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}


.main-slider .main-slider-content .features-box {
    position: relative;
    display: block;
    padding-top: 35px;

    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .features-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}


.main-slider .main-slider-content .features-box ul {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main-slider .main-slider-content .features-box ul li {
    position: relative;
    display: block;
}

.main-slider .main-slider-content .features-box ul li+li {
    margin-left: 60px;
}

.main-slider .main-slider-content .features-box ul li .icon {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-size: 50px;
}

.main-slider .main-slider-content .features-box ul li:nth-child(2) .icon {
    font-size: 55px;
}

.main-slider .main-slider-content .features-box ul li .icon span {
    font-weight: 500;
}

.main-slider .main-slider-content .features-box ul li .inner-text {
    position: relative;
    display: block;
    padding-top: 15px;
}

.main-slider .main-slider-content .features-box ul li .inner-text p {
    color: #0e2735;
    font-size: 17px;
    line-height: 20px;
    font-weight: 500;
}



.main-slider .main-slider-content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 45px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .swiper-slide-active .main-slider-content .btn-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider .main-slider-content .btns-box a {}




.main-slider__nav {
    position: absolute;
    top: 0;
    right: 40px;
    bottom: 0px;
    transform: translateY(0%) translateX(0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: rgba(9, 13, 48, 0.50);
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 0%;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    margin: 10px 0;
    text-align: center;
    transition: all 500ms ease;
    z-index: 100;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    color: #ffffff;
    background-color: var(--thm-base);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
    display: none;
}

.main-slider__nav .swiper-button-prev {
    transform: rotate(0deg);
}

.main-slider__nav .swiper-button-prev .angle-left {
    position: relative;
    transform: rotate(0deg);
}



/*--------------------------------------------------------------
# Main Slider Style2
--------------------------------------------------------------*/
.main-slider-style2 {
    position: relative;
}

.main-slider-style2 .container {
    padding-top: 221px;
    padding-bottom: 190px;
}

.main-slider-style2 .main-slider-content__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    max-width: 800px;
    float: right;
    margin-right: -100px;
}

.main-slider-style2 .main-slider-content__inner .sub-title-box {
    position: relative;
    display: block;
    padding-bottom: 13px;

    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.main-slider-style2 .swiper-slide-active .main-slider-content__inner .sub-title-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider-style2 .main-slider-content__inner .sub-title-box ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-slider-style2 .main-slider-content__inner .sub-title-box ul li {
    position: relative;
    display: block;
    float: left;
    padding-right: 15px;
    margin-right: 10px;
    line-height: 24px;
}

.main-slider-style2 .main-slider-content__inner .sub-title-box ul li:before {
    content: "";
    position: absolute;
    top: 13px;
    right: 0;
    width: 5px;
    height: 1px;
    background-color: #0052ae;
}

.main-slider-style2 .main-slider-content__inner .sub-title-box ul li a {
    color: #0052ae;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
}



.main-slider-style2 .main-slider-content .big-title h2 {
    color: #0a0d19;
    font-size: 60px;
    line-height: 1.1em;
    font-weight: 900;
}

.main-slider-style2 .main-slider-content .btn-box {
    padding-top: 43px;
}




/*--------------------------------------------------------------
# Main Slider Style3
--------------------------------------------------------------*/
.main-slider-style3 {
    position: relative;
}

.main-slider-style3 .container {
    padding-top: 280px;
    padding-bottom: 210px;
}

.main-slider-style3 .main-slider-content__inner .sub-title-box {
    position: relative;
    display: block;
    padding-bottom: 22px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.main-slider-style3 .swiper-slide-active .main-slider-content__inner .sub-title-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider-style3 .main-slider-content__inner .sub-title-box h3 {
    position: relative;
    display: inline-block;
    background-color: var(--thm-base);
    padding: 10px 35px 9px;
    border-radius: 20px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}



.main-slider-style3 .main-slider-content .text p {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}


.main-slider-style3 .main-slider-content .big-title h2 {
    color: #ffffff;
    font-size: 70px;
    line-height: 1.05em;
    font-weight: 900;
}

.main-slider-style3 .main-slider-content .btn-box {
    padding-top: 43px;
}

.main-slider-style3 .main-slider-content .btn-box a:after {
    background-image: none;
    background-color: #1d1d1d;
}

/*** End Css  **/
/*** 
=============================================
    About Style1 Css   
=============================================
***/
.about-style1 {
    position: relative;
    display: block;
    background: #f0f8fa;
    padding: 46px 0 41px;
    z-index: 10;
}

.about-style1__img {
    position: relative;
    display: block;
    margin-right: 60px;
}

.about-style1__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.about-style1__img .inner img {
    width: 100%;
    transform: scale(1.0);
}

.about-style1__img .inner:hover img {
    transform: scale(1.02) rotate(0deg);
}


.about-style1__img .overlay-box {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 165px;
    background-color: var(--thm-base);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 0px 28px;
    z-index: 3;
}

.about-style1__img .overlay-box h2 {
    color: #ffffff;
    font-size: 60px;
    line-height: 70px;
    font-family: var(--thm-font);
}

.about-style1__img .overlay-box p {
    color: #ffffff;
    font-weight: 600;
    font-family: var(--thm-font);
}



.about-style1__content {
    position: relative;
    display: block;
}

.about-style1__content .sec-title {
    padding-bottom: 26px;
}

.about-style1__content-inner {
    position: relative;
    display: block;
}

.about-style1__content-inner .top-text {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.about-style1__content-inner .top-text p {
    color: var(--thm-black);
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

.about-style1__content-inner .bottom-text {
    position: relative;
    display: block;
}

.about-style1__content-inner .bottom-text p {
    margin: 0;
}




.features-box-style1 {
    position: relative;
    display: block;
    margin-top: 44px;
}

.features-box-style1 ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.features-box-style1 ul li {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    padding-right: 30px;
}

.features-box-style1 ul li:last-child {
    padding-left: 30px;
    padding-right: 0;
}

.features-box-style1 ul li .single-features-box-style1 {
    position: relative;
    display: block;
    padding-left: 80px;
}

.features-box-style1 ul li .single-features-box-style1 .icon {
    position: absolute;
    top: 4px;
    left: 0;
    line-height: 0;
}

.features-box-style1 ul li .single-features-box-style1 .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 62px;
    line-height: 62px;
}

.features-box-style1 ul li .single-features-box-style1 .inner-title {
    position: relative;
    display: block;
}

.features-box-style1 ul li .single-features-box-style1 .inner-title h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 0 0 2px;
}

.features-box-style1 ul li .single-features-box-style1 .inner-title p {
    margin: 0;
}



/*** 
=============================================
    About Style1 Css   
=============================================
***/
.about-style2 {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}


.about-style2-manager-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.about-style2-manager-box .left {
    position: relative;
    display: flex;
    align-items: center;
    width: 320px;
}

.about-style2-manager-box .img-box {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.about-style2-manager-box .img-box:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    height: 100%;
    background-color: #000000;
    opacity: 0.7;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top center;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    z-index: 1;
}

.about-style2-manager-box:hover .img-box:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}


.about-style2-manager-box .img-box img {
    width: 100%;
}

.about-style2-manager-box .title-box {
    position: relative;
    flex: 1;
    margin-left: 25px;
}

.about-style2-manager-box .title-box h3 {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    margin: 0 0 1px;
}

.about-style2-manager-box .title-box span {
    font-size: 16px;
    line-height: 20px;
}


.about-style2-manager-box .right {
    position: relative;
    flex: 1;
}

.about-style2-manager-box .right .awards-img-box ul li a img {
    filter: none;
}


.about-style2__manager-signature {
    position: relative;
    display: block;
    padding-top: 10px;
}

/*** 
=============================================
    Fact Counter Area style
=============================================
***/
.fact-counter-area {
    position: relative;
    display: block;
    padding: 0px 0px 70px;
    background: #ffffff;
    z-index: 10;
}

.fact-counter_box {
    position: relative;
    display: block;
    padding-top: 91px;
}

.fact-counter_box .border-top-color {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #c6c7cc;
}

.fact-counter_box ul {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.single-fact-counter {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 25%;
    width: 100%;
    margin-bottom: 46px;
}

.single-fact-counter .round-box {
    position: absolute;
    left: -20px;
    bottom: -10px;
    width: 50px;
    height: 50px;
    background-color: #e6f0f7;
    border-radius: 50%;
}


.single-fact-counter .icon {
    position: relative;
    display: block;
    width: 85px;
    top: 3px;
}

.single-fact-counter .icon span {
    position: relative;
    display: block;
    line-height: 0;
}

.single-fact-counter .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 60px;
    line-height: 60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-fact-counter:hover .icon span::before {
    transform: scale(1.1) rotateY(180deg);
}




.single-fact-counter .outer-box {
    position: relative;
    display: block;
    flex: 1;
}

.single-fact-counter .count-box {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 50px;
    line-height: 50px;
    font-weight: 800;
    font-family: var(--thm-font);
}

.single-fact-counter .count-box span {
    position: relative;
    display: block;
    line-height: 50px;
}

.single-fact-counter .count-box i {
    position: relative;
    display: inline-block;
    top: 2px;
    padding-left: 5px;
    font-size: 35px;
    font-weight: 700;
}


.single-fact-counter .title {
    position: relative;
    display: block;
    padding-top: 8px;
}

.single-fact-counter .title h6 {
    color: var(--thm-primary);
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-font);
}


.single-fact-counter:nth-child(2) {
    padding-left: 30px;
}

.single-fact-counter:nth-child(2) .round-box {
    left: 10px;
}


.single-fact-counter:nth-child(3) {
    padding-left: 30px;
}

.single-fact-counter:nth-child(3) .round-box {
    left: 10px;
}



.single-fact-counter:nth-child(4) {
    padding-left: 40px;
}

.single-fact-counter:nth-child(4) .round-box {
    left: 20px;
}









/*** 
=============================================
    Fact Counter Style2 Area style
=============================================
***/
.fact-counter-style2-area {}

.fact-counter-style2-area .fact-counter_box {
    margin-top: 93px;
    padding-top: 111px;
}

.fact-counter-style2-area .fact-counter_box .border-top-color {
    background: #467ab5;
    opacity: 0.50;
}

.fact-counter-style2-area .single-fact-counter .icon span::before {
    color: #17aaff;
}

.fact-counter-style2-area .single-fact-counter .round-box {
    opacity: 0.03;
}

.fact-counter-style2-area .single-fact-counter .count-box {
    color: #ffffff;
}

.fact-counter-style2-area .single-fact-counter .title h6 {
    color: #ffffff;
}

/*** 
=============================================
   Testimonial Style1 Area Css
=============================================
***/
.testimonials-style1-area {
    position: relative;
    display: block;
    background: #0b4076;
    padding: 120px 0px 120px;
    overflow: hidden;
    z-index: 10;
}

.testimonials-style1-area.pdt {
    padding-top: 220px;
}

.testimonials-style1-area .map-layer {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left center;
    z-index: -1;
}

.testimonial-style1-title-box {
    position: relative;
    display: block;
}

.testimonial-style1-title-box .sec-title h2 {
    color: #ffffff;
}



.single-testimonials-style1 {
    position: relative;
    display: block;
}

.single-testimonials-style1__inner {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 43px 40px 43px;
    border-radius: 8px;
    z-index: 1;
}

.single-testimonials-style1__inner:before {
    content: "";
    position: absolute;
    left: 62px;
    bottom: -10px;
    width: 45px;
    height: 10px;
    border-top: 10px solid #ffffff;
    border-left: 22.5px solid transparent;
    border-right: 22.5px solid transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-testimonials-style1 .quote-box {
    position: relative;
    display: block;
    padding-bottom: 18px;
}

.single-testimonials-style1 .quote-box span {
    position: relative;
    display: block;
    line-height: 0;
}

.single-testimonials-style1 .quote-box span:before {
    color: var(--thm-base);
    font-size: 60px;
    line-height: 60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-testimonials-style1 .text-box {
    position: relative;
    display: block;
}

.single-testimonials-style1 .text-box p {
    color: #494949;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.single-testimonials-style1 .customer-info {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 30px;
    margin-left: 50px;
}

.single-testimonials-style1 .customer-info .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 70px;
    border-radius: 50%;
}

.single-testimonials-style1 .customer-info .img-box:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    height: 100%;
    background-color: var(--thm-primary);
    opacity: 0.7;
    border-radius: 0%;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top center;
    -webkit-transform: scale(0);
    transform: scale(0);
    z-index: 1;
}

.single-testimonials-style1:hover .customer-info .img-box:before {
    -webkit-transform: scale(1);
    transform: scale(1);
    transform-origin: bottom center;
}

.single-testimonials-style1 .customer-info .img-box img {
    width: 100%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-testimonials-style1:hover .customer-info .img-box img {
    transform: scale(1.05);
}

.single-testimonials-style1 .customer-info .title-box {
    position: relative;
    padding-left: 25px;
    flex: 1;
}

.single-testimonials-style1 .customer-info .title-box h3 {
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 0px;
}

.single-testimonials-style1 .customer-info .title-box span {
    position: relative;
    display: inline-block;
    color: #88c0f9;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}



/*** 
=============================================
   Testimonial Style2 Area Css
=============================================
***/
.testimonials-style2-area {
    position: relative;
    display: block;
    background: #1f1e3b;
    padding: 120px 0px 120px;
    overflow: hidden;
    z-index: 10;
}

.testimonials-style2-area .map-layer {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 0.20;
    z-index: -1;
}

.testimonial-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    left: -410px;
    bottom: 112px;
}

.testimonials-style2-area--bg2 {
    background-color: #062648;
}



/*** 
=============================================
   Testimonial Style3 Area Css
=============================================
***/
.testimonials-style3-area {
    position: relative;
    display: block;
    background: #a22929;
    padding: 120px 0px 90px;
    overflow: hidden;
    z-index: 10;
}

.testimonials-style3-area .sec-title .sub-title .border-left {
    background-color: #ffffff;
}

.testimonials-style3-area .sec-title .sub-title h5 {
    color: #ffffff;
}

.testimonials-style3-area .map-layer {
    position: absolute;
    top: 0;
    left: 5%;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 0.10;
    z-index: -1;
}



.single-testimonials-style1--instyle2 .single-testimonials-style1__inner {
    background-color: transparent;
    padding: 0px 40px 43px;
    border-bottom: 1px solid #ffffff;
    border-radius: 0;
}

.single-testimonials-style1--instyle2 .single-testimonials-style1__inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    background-image: -moz-linear-gradient(90deg, rgb(247, 241, 235) 5%, rgb(173, 87, 87) 50%, rgb(155, 51, 51) 95%);
    background-image: -webkit-linear-gradient(90deg, rgb(247, 241, 235) 5%, rgb(173, 87, 87) 50%, rgb(155, 51, 51) 95%);
    background-image: -ms-linear-gradient(90deg, rgb(247, 241, 235) 5%, rgb(173, 87, 87) 50%, rgb(155, 51, 51) 95%);
    border: none;
    height: 100%;
}

.single-testimonials-style1--instyle2 .single-testimonials-style1__inner:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background-image: -moz-linear-gradient(90deg, rgb(247, 241, 235) 5%, rgb(173, 87, 87) 50%, rgb(155, 51, 51) 95%);
    background-image: -webkit-linear-gradient(90deg, rgb(247, 241, 235) 5%, rgb(173, 87, 87) 50%, rgb(155, 51, 51) 95%);
    background-image: -ms-linear-gradient(90deg, rgb(247, 241, 235) 5%, rgb(173, 87, 87) 50%, rgb(155, 51, 51) 95%);
    border: none;
    height: 100%;
}

.single-testimonials-style1--instyle2 .quote-box {
    position: absolute;
    padding-bottom: 0;
    bottom: -27px;
    right: 40px;
    background: #a22929;
    padding: 0 20px;
}

.single-testimonials-style1--instyle2 .quote-box span:before {
    color: #ffffff;
}

.single-testimonials-style1--instyle2 .text-box p {
    color: #ffffff;
}

.single-testimonials-style1--instyle2 .customer-info {
    padding-top: 0px;
    margin-left: 0px;
    margin-bottom: 21px;
}

.single-testimonials-style1--instyle2 .customer-info .title-box span {
    color: #cacaca;
    font-size: 16px;
    font-weight: 400;
}

.single-testimonials-style1--instyle2 .customer-info .img-box:before {
    background-color: #000000;
}



.testimonial-style3-carousel.owl-nav-style-one.owl-theme .owl-stage-outer {
    padding-bottom: 30px;
}

.testimonial-style3-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    left: -410px;
    bottom: 33px;
}

.testimonial-style3-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    border: 2px solid rgba(255, 255, 255, 0.30);
}

.testimonial-style3-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    color: rgba(255, 255, 255, 0.50);
}



/*** 
=============================================
   Testimonial Style4 Area Css
=============================================
***/
.testimonials-style4-area {
    position: relative;
    display: block;
    background: #edf0f7;
    padding: 120px 0px 120px;
    overflow: hidden;
    z-index: 10;
}

.testimonials-style4-area .map-layer {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.05;
    z-index: -1;
}

.testimonials-style4-area .testimonial-style1-title-box .sec-title h2 {
    color: var(--thm-black);
}

.testimonials-style4-area .single-testimonials-style1 .customer-info .title-box h3 {
    color: var(--thm-black);
}

.testimonials-style4-area .single-testimonials-style1 .customer-info .title-box span {
    color: var(--thm-primary);
}




/*** 
=============================================
   Testimonial Page Area Css
=============================================
***/
.testimonials-page-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 60px;
    overflow: hidden;
    z-index: 10;
}

.testimonials-page-one__title {
    position: relative;
    display: block;
}

.testimonials-page-one__title .sec-title {
    padding-bottom: 0;
}

.testimonials-page-one .single-testimonials-style1 {
    margin-bottom: 60px;
}

.testimonials-page-one .single-testimonials-style1__inner {
    background-color: #fcfcfd;
    padding: 43px 40px 43px;
    border-radius: 8px;
    border: 1px solid #f1f1f1;
}

.testimonials-page-one .single-testimonials-style1__inner:before {
    display: none;
}

.testimonials-page-one .single-testimonials-style1__inner .down-arrow {
    position: absolute;
    left: 60px;
    bottom: -17px;
}

.testimonials-page-one .single-testimonials-style1 .customer-info .title-box h3 {
    color: var(--thm-black);
}

.testimonials-page-one .single-testimonials-style1 .customer-info .title-box span {
    color: var(--thm-base);
}

/** End Css***/
/*** 
=============================================
    Partner Area Css
=============================================
***/
.partner-area {
    position: relative;
    display: block;
    margin-top: 0px;
    background-color: #ecf0f7;
    padding-bottom: 120px;
    z-index: 10;
}

.partner-area__inner {
    position: relative;
    display: block;
    border-top: 1px solid #bebebe;
    padding-top: 100px;
}

.partner-area .sec-title {
    padding-bottom: 49px;
}

.partner-area .sec-title .sub-title {
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
}

.partner-area .sec-title .sub-title h5 {
    margin-left: 10px;
    margin-right: 10px;
}


.brand-content {
    position: relative;
    display: block;

    border-left: none;
}

.single-partner-logo-box {
    position: relative;
    display: block;
    text-align: center;

    z-index: 1;
}

.single-partner-logo-box:hover {
    border-color: #bec6d4;
    transition: all 300ms linear;
    transition-delay: 0.2s;
}

.single-partner-logo-box:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: #bec6d4;
    opacity: 0;
    z-index: -1;
}

.single-partner-logo-box:hover:before {
    opacity: 1.0;
    transition: all 300ms linear;
    transition-delay: 0.2s;
}

.single-partner-logo-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0px 0 0px;
}

.single-partner-logo-box a img {
    position: relative;
    display: inline-block !important;
    opacity: 1.0;
    width: auto !important;
    transition: all 0.2s ease-in-out 0.1s;
    mix-blend-mode: screen;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.single-partner-logo-box:hover a img {
    opacity: 1;
    transition: all 0.8s ease-in-out 0.1s;
    mix-blend-mode: darken;
}

.partner-area__inner {
    position: relative;
    display: block;
    border-top: 1px solid #bebebe;
    padding-top: 25px;
    padding-bottom: 0 !important;
}

.partner-area {
    position: relative;
    display: block;
    margin-top: 0px;
    background-color: #ecf0f7;
    padding-bottom: 49px;
    z-index: 10;
}

.partner-area--style2 {
    background-color: #eff2f5;
}

.partner-area--style2 .partner-area__inner {
    border-top: 1px solid #e1e3e6;
}




.partner-area--style3 {
    background-color: #ffffff;
}

.partner-area--style3 .partner-area__inner {
    border-top: 1px solid #f0eeee;
}

/*** 
=============================================
    Footer area style
=============================================
***/
.bottom-parallax {
    position: relative;
    height: auto;
    opacity: 0;
    z-index: -999;
}

.bottom-parallax .footer-area {
    position: relative;
    left: 0px;
    bottom: 0px;
    right: 0px;
    height: auto;
}


.parallax-visible .bottom-parallax {
    opacity: 1;
    z-index: 1;
}



/*** 
=============================================
    Footer Area Css
=============================================
***/
.footer-area {
    position: relative;
    display: block;
    background: #090d30;
    z-index: 10;
}

.footer-top {
    position: relative;
    display: block;
    z-index: 1;
}

.footer-top__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: repeat;
    background-size: cover;
    background-color: #111641;
    background-blend-mode: multiply;
    opacity: 0.85;
    z-index: -1;
}

.footer-top__inner {
    position: relative;
    display: block;
}

.footer-contact-info-box1 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.footer-contact-info-box1 li {
    flex: 0 0 auto;
    width: 33.3333333333%;
    padding: 20px 0;
}

.footer-contact-info-box1 li+li {
    border-left: 1px solid rgba(255, 255, 255, 0.10);
    padding-left: 60px;
}

.footer-contact-info-box1__single {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-contact-info-box1__single .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #fff;
    font-size: 30px;
    z-index: 1;
}

.footer-contact-info-box1__single .icon.map {
    font-size: 34px;
}

.footer-contact-info-box1__single .icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    border-radius: 8px;
    background-color: var(--thm-base);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.footer-contact-info-box1 li:hover .footer-contact-info-box1__single .icon:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.footer-contact-info-box1__single .text {
    position: relative;
    margin-left: 25px;
    flex: 1;
}

.footer-contact-info-box1__single .text p {
    color: #ffffff;
    line-height: 24px;
}

.footer-contact-info-box1__single .text h5 {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--thm-font-2);
    margin: 7px 0 0;
}

.footer-contact-info-box1__single .text h5 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-contact-info-box1__single .text h5 a:hover {
    color: var(--thm-base);
}




.footer-main {
    position: relative;
    display: block;
    padding-top: 60px;
    padding-bottom: 1px;
}

.single-footer-widget .title {
    position: relative;
    display: block;
    margin-top: -2px;
    padding-top: 9px;
}

.single-footer-widget .title h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.footer-main .single-widget {
    margin-bottom: 44px;
}


.single-footer-widget {
    position: relative;
    display: block;
}

.single-footer-widget.margin-leftminus1 {
    margin-left: -40px;
}

.single-footer-widget .our-company-info {
    position: relative;
    display: block;
    padding-right: 110px;
}

.footer-logo-style1 {
    position: relative;
    display: block;
    padding-bottom: 18px;
}

.footer-logo-style1 a {
    position: relative;
    display: inline-block;
}

.single-footer-widget .our-company-info .text {
    position: relative;
    display: block;
}

.single-footer-widget .our-company-info .text p {
    color: #bcc1c9;
    font-size: 17px;
    line-height: 28px;
}


.footer-social-link {
    position: relative;
    display: block;
    padding-top: 33px;
}

.footer-social-link ul {
    position: relative;
    display: block;
}

.footer-social-link ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.footer-social-link ul li:last-child {
    margin-right: 0;
}

.footer-social-link ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background: transparent;
    border: 1px solid #bcc1c9;
    border-radius: 50%;
    color: #bcc1c9;
    font-size: 16px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.footer-social-link ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: transparent;
    border: 1px solid var(--thm-base);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.footer-social-link ul li:hover a:before {
    opacity: 1.0;
    transform: scale(1.0);
}

.footer-social-link ul li:hover a {
    color: var(--thm-base);
    border-color: var(--thm-base);
}



.footer-widget-links {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 29px;
}

.single-footer-widget--link-box {
    position: relative;
}

.footer-widget-links ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.footer-widget-links ul li {
    position: relative;
    display: block;
    line-height: 26px;
    margin-bottom: 11px;
}

.footer-widget-links ul li:last-child {
    margin-bottom: 0;
}

.footer-widget-links ul li a {
    position: relative;
    display: inline-block;
    color: #bcc1c9;
    font-size: 17px;
    font-weight: 400;
    font-family: var(--thm-font);
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.footer-widget-links ul li a:hover {
    color: #ffffff;
    padding-left: 2px;
}


.single-footer-widget__img-box {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-left: -40px;
}

.single-footer-widget__img-box img {
    width: auto;
}



.footer-bottom {
    position: relative;
    display: block;
}

.footer-bottom .bottom-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 25px 0px 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.copyright-text {
    position: relative;
    display: block;
}

.copyright-text p {
    color: rgba(160, 165, 177, 0.80);
    font-size: 16px;
}

.copyright-text p a {
    color: rgba(160, 165, 177, 0.80);
    font-weight: 500;
    transition: all 300ms ease 100ms;
}

.copyright-text p a:hover {
    color: #ffffff;
}


.footer-bottom-right {
    position: relative;
    display: block;
}

.footer-bottom-right p {
    color: rgba(160, 165, 177, 0.80);
    font-size: 16px;
}

.footer-bottom-right p a {
    color: rgba(160, 165, 177, 0.80);
    font-weight: 500;
    transition: all 300ms ease 100ms;
}

.footer-bottom-right p a:hover {
    color: #ffffff;
}




/*** 
=============================================
    Footer Area Css
=============================================
***/
.footer-area--style2 {
    background: #1d1d1d;
}

.footer-area--style2 .footer-top__bg {
    background-color: #1d1d1d;
}


.footer-area--style2 .single-footer-widget .our-company-info .text p {
    color: #a2a2a2;
}

.footer-area--style2 .footer-widget-links ul li a {
    color: #a2a2a2;
}

.footer-area--style2 .footer-widget-links ul li a:hover {
    color: #ffffff;
}


.footer-area--style2 .footer-social-link ul li a {
    border: 1px solid #a2a2a2;
    color: #a2a2a2;
}

.footer-area--style2 .footer-social-link ul li a:before {
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    border: 3px solid var(--thm-base);
}

.footer-area--style2 .footer-social-link ul li a:hover {
    color: #ffffff;
}



.footer-area--style2 .copyright-text p {
    color: #a2a2a2;
}

.footer-area--style2 .copyright-text p a {
    color: #a2a2a2;
}

.footer-area--style2 .footer-bottom-right p {
    color: #a2a2a2;
}

.footer-area--style2 .footer-bottom-right p a {
    color: #a2a2a2;
}

/**  End Css  **/
/*** 
=============================================
    Blog Style2 Area Css
=============================================
***/
.blog-style1-area {
    position: relative;
    display: block;
    background-color: #ecf0f7;
    padding: 120px 0 50px;
    z-index: 10;
}

.blog-style1-area__top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 49px;
}

.blog-style1-area__top .sec-title {
    padding-bottom: 0;
}

.blog-style1-area__top .btn-box {
    position: relative;
    top: -11px;
    display: block;
    line-height: 0;
}

.blog-style1-area__top .btn-box a {
    color: #ffffff;
}

.blog-style1-area__top .btn-box a:after {
    background-color: #9ca4b3;
    background-image: none;
}



.blog-style1-content-box {
    position: relative;
    display: block;
}

.single-blog-style1 {
    position: relative;
    display: block;
    margin-bottom: 45px;
}

.single-blog-style1 .img-holder {
    position: relative;
    display: block;
}

.single-blog-style1 .img-holder .inner {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.single-blog-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.single-blog-style1:hover .single-blog-style1__bg {
    opacity: 0.85;
}

.single-blog-style1 .img-holder img {
    width: 100%;
    transform: scale(1.0);
}

.single-blog-style1:hover .img-holder img {
    transform: scale(1.05) rotate(0deg);
}

.single-blog-style1 .img-holder .inner .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform-origin: top;
    transition: all 1000ms ease;
}

.single-blog-style1:hover .img-holder .inner .overlay-icon {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 500ms;
}

.single-blog-style1 .img-holder .inner .overlay-icon a {
    position: relative;
    display: inline-block;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1 .img-holder .inner .overlay-icon a:hover {
    filter: drop-shadow(5px);
    transform: scale(1.1);
}

.single-blog-style1 .img-holder .date-box {
    position: absolute;
    left: 10px;
    bottom: -20px;
    background-color: var(--thm-base);
    padding: 7px 25px 8px;
    border-radius: 5px;
    z-index: 10;
}

.single-blog-style1 .img-holder .date-box p {
    color: #ffffff;
    font-size: 17px;
    line-height: 27px;
    font-weight: 600;
}



.single-blog-style1 .text-holder {
    position: relative;
    display: block;
    padding-top: 55px;
}

.single-blog-style1 .text-holder .blog-title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 9px;
}

.single-blog-style1 .text-holder .blog-title a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style1 .text-holder .blog-title a:hover {
    color: var(--thm-base);
}

.single-blog-style1 .text-holder .text {
    margin-bottom: 20px;
}

.single-blog-style1 .text-holder .text p {
    color: #3b3b3b;
}

.single-blog-style1 .text-holder .btn-box {
    position: relative;
    display: block;
}

.single-blog-style1 .text-holder .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
}

.single-blog-style1 .text-holder .btn-box a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 5px;
    right: 0;
    height: 1px;
    background-color: var(--thm-base);
}




.blog-style1-sidebar-blog-list {
    position: relative;
    display: block;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.80);
    box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
    padding: 20px 30px 20px;
}

.blog-style1-sidebar-blog-list ul {
    position: relative;
    display: block;
}

.blog-style1-sidebar-blog-list ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid #e8e8e8;
    padding: 23px 0 23px;
}

.blog-style1-sidebar-blog-list ul li:last-child {
    border: none;
}

.blog-style1-sidebar-blog-list ul li h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 9px;
}

.blog-style1-sidebar-blog-list ul li h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-style1-sidebar-blog-list ul li h3 a:hover {
    color: var(--thm-base);
}

.blog-style1-sidebar-blog-list ul li p {
    color: #969696;
    font-size: 17px;
    line-height: 27px;
    font-weight: 600;
}




/*** 
=============================================
    Blog Style2 Area Css
=============================================
***/
.blog-style2-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 70px;
    z-index: 10;
}


.blog-style2-area__top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 49px;
}

.blog-style2-area__top .sec-title {
    padding-bottom: 0px;
}

.blog-style2-area__top .btn-box {
    position: relative;
    display: block;
    top: -12px;
}

.blog-style2-area__top .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 20px;
    line-height: 21px;
    font-family: var(--thm-font);
    font-weight: 500;
}

.blog-style2-area__top .btn-box a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -1px;
    right: 0;
    height: 1px;
    background-color: var(--thm-base);
}



.single-blog-style2 {
    position: relative;
    display: block;
    margin-bottom: 42px;
}

.single-blog-style2 .img-holder {
    position: relative;
    display: block;
}

.single-blog-style2 .img-holder .inner {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}

.single-blog-style2 .img-holder .inner img {
    width: 100%;
    transform: scale(1.0);
}

.single-blog-style2:hover .img-holder .inner img {
    transform: scale(1.05) rotate(0deg);
}

.single-blog-style2__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: var(--thm-black);
    transition: all 300ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.single-blog-style2:hover .single-blog-style2__bg {
    opacity: 0.60;
}


.single-blog-style2 .img-holder .date-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 12px;
    left: 25px;
    bottom: -20px;
    width: 75px;
    height: 70px;
    border-radius: 5px;
    background-color: #fbf4f1;
    box-shadow: 0px 7px 24px 0px rgba(0, 0, 0, 0.18);
    z-index: 3;
}

.single-blog-style2 .date-box h2 {
    color: #1d1d1d;
    font-size: 30px;
    line-height: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.single-blog-style2 .date-box h2 span {
    color: #0e2a4e;
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
}


.single-blog-style2 .text-holder {
    position: relative;
    display: block;
    margin-top: 53px;
}

.single-blog-style2 .text-holder h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 17px;
}

.single-blog-style2 .text-holder h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style2 .text-holder h3 a:hover {
    color: var(--thm-base);
}

.single-blog-style2 .text-holder p {
    margin: 0;
}

.single-blog-style2 .text-holder .btn-box {
    position: relative;
    display: block;
    margin-top: 17px;
}

.single-blog-style2 .text-holder .btn-box a {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style2 .text-holder .btn-box a:hover {
    color: #000000;
}

.single-blog-style2 .text-holder .btn-box a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    right: 0;
    height: 1px;
    background-color: #000000;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.single-blog-style2 .text-holder .btn-box a:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top right;
}






/*** 
=============================================
    Blog Style3 Area Css
=============================================
***/
.blog-style3-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 70px;
    z-index: 10;
}


.single-blog-style3 {
    position: relative;
    display: block;
    margin-bottom: 42px;
}

.single-blog-style3 .img-holder {
    position: relative;
    display: block;
    z-index: 1;
}

.single-blog-style3 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.single-blog-style3 .img-holder .inner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #1d1d1d;
    opacity: 0;
    z-index: 2;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.single-blog-style3:hover .img-holder .inner:after {
    opacity: 0.70;
}

.single-blog-style3 .img-holder img {
    width: 100%;
    transform: scale(1.0);
}

.single-blog-style3:hover .img-holder img {
    transform: scale(1.05) rotate(0deg);
}

.single-blog-style3 .img-holder .inner .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform-origin: top;
    transition: all 1000ms ease;
}

.single-blog-style3:hover .img-holder .inner .overlay-icon {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 500ms;
}

.single-blog-style3 .img-holder .inner .overlay-icon a {
    position: relative;
    display: inline-block;
}



.single-blog-style3 .text-holder {
    position: relative;
    display: block;
    padding-top: 29px;
}

.single-blog-style3 .text-holder .meta-box {
    position: relative;
    display: block;
    margin-bottom: 6px;
}

.single-blog-style3 .text-holder .meta-box .meta-info {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.single-blog-style3 .text-holder .meta-box .meta-info li {
    position: relative;
    display: block;
    padding-right: 8px;
}

.single-blog-style3 .text-holder .meta-box .meta-info li:last-child {
    padding-right: 0;
}

.single-blog-style3 .text-holder .meta-box .meta-info li a {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style3 .text-holder .meta-box .meta-info .black a {
    color: #444444;
}

.single-blog-style3 .text-holder .meta-box .meta-info li a:hover {
    color: var(--thm-base);
}

.single-blog-style3 .text-holder .blog-title {
    font-size: 24px;
    line-height: 34px;
}

.single-blog-style3 .text-holder .blog-title a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style3 .text-holder .blog-title a:hover {
    color: var(--thm-base);
}



.single-blog-style3 .text-holder .btn-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.single-blog-style3 .text-holder .btn-box .border-line {
    position: relative;
    display: block;
    top: 0px;
    background-color: var(--thm-base);
    width: 25px;
    height: 1px;
}

.single-blog-style3 .text-holder .btn-box a {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    letter-spacing: 0.1em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin-left: 10px;
}

.single-blog-style3 .text-holder .btn-box a:hover {
    letter-spacing: normal;
}



/*** 
=============================================
    Blog Page One Css
=============================================
***/
.blog-page-one {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.blog-page-content {
    position: relative;
    display: block;
    padding-right: 30px;
}


.single-blog-style4 {
    position: relative;
    display: block;
    margin-bottom: 70px;
}

.single-blog-style4 .img-holder {
    position: relative;
    display: block;
    z-index: 1;
}

.single-blog-style4 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-base);
}

.single-blog-style4 .img-holder .inner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    opacity: 0;
    z-index: 2;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.single-blog-style4:hover .img-holder .inner:after {
    opacity: 0.60;
}

.single-blog-style4 .img-holder img {
    width: 100%;
    transform: scale(1.0);
}

.single-blog-style4:hover .img-holder img {
    transform: scale(1.05) rotate(0deg);
}

.single-blog-style4 .img-holder .inner .overlay-icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform-origin: top;
    transition: all 1000ms ease;
    z-index: 5;
}

.single-blog-style4:hover .img-holder .inner .overlay-icon {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 500ms;
}

.single-blog-style4 .img-holder .inner .overlay-icon a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style4 .img-holder .inner .overlay-icon a:hover {
    color: var(--thm-black);
}


.single-blog-style4 .img-holder .inner .date-box {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ffffff;
    z-index: 5;
}

.single-blog-style4 .img-holder .inner .date-box h2 {
    position: relative;
    top: 2px;
    font-size: 32px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

.single-blog-style4 .img-holder .inner .date-box h2 span {
    font-size: 18px;
}



.single-blog-style4 .text-holder {
    position: relative;
    display: block;
    padding-top: 16px;
}

.single-blog-style4 .text-holder .meta-box {
    position: relative;
    display: block;
    padding-left: 40px;
    padding-bottom: 20px;
    margin-bottom: 28px;
    border-bottom: 1px solid #e4e4e4;
}

.single-blog-style4 .text-holder .meta-box .meta-title {
    position: absolute;
    top: 1px;
    left: 0;
    color: #b8b8b8;
    font-size: 20px;
    font-weight: 600;
}

.single-blog-style4 .text-holder .meta-box .meta-info {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-blog-style4 .text-holder .meta-box .meta-info li {
    position: relative;
    display: block;
    float: left;
    padding-right: 20px;
    margin-right: 17px;
}

.single-blog-style4 .text-holder .meta-box .meta-info li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.single-blog-style4 .text-holder .meta-box .meta-info li::before {
    position: absolute;
    content: '';
    top: 9px;
    right: 0;
    bottom: 7px;
    width: 1px;
    background-color: #b8b8b8;
    transform: rotate(15deg);
}

.single-blog-style4 .text-holder .meta-box .meta-info li:last-child::before {
    display: none;
}

.single-blog-style4 .text-holder .meta-box .meta-info li a {
    color: #b8b8b8;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style4 .text-holder .meta-box .meta-info li a:hover {
    color: var(--thm-base);
}




.single-blog-style4 .text-holder .blog-title {
    font-size: 30px;
    line-height: 40px;
    padding: 31px 0 12px;
}

.single-blog-style4 .text-holder .blog-title a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-blog-style4:hover .text-holder .blog-title a {
    color: var(--thm-base);
}

.single-blog-style4 .text-holder .btn-box {
    position: relative;
    display: block;
    margin-top: 33px;
}

.single-blog-style4 .text-holder .btn-box a {
    font-size: 14px;
    line-height: 50px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 0;
}

.single-blog-style4 .text-holder .btn-box a:after {
    border-radius: 0;
}

.single-blog-style4 .text-holder .btn-box a:before {
    border-radius: 0;
}



/*** 
=============================================
    Blog Page Two Css
=============================================
***/
.blog-page-two {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.blog-page-two .single-blog-style4 .text-holder .blog-title {
    font-size: 26px;
}



/*** 
=============================================
    Blog Details Area Css
=============================================
***/
.blog-details-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.blog-details-box {
    position: relative;
    display: block;
    margin-right: 30px;
}

.blog-details-box .single-blog-style4 {
    margin: 0;
}

.blog-details-text-1 {
    position: relative;
    display: block;
    padding-top: 36px;
    padding-bottom: 44px;
}

.blog-details-text-1 .inner-title {
    position: relative;
    display: block;
    padding-bottom: 13px;
}

.blog-details-text-1 .inner-title h3 {
    font-size: 26px;
    line-height: 34px;
}

.blog-details-text-1 .text-1-1 {
    position: relative;
    display: block;
}


.blog-details-text-2 {
    position: relative;
    display: block;
}

.blog-details-text-2 a {
    color: var(--thm-base);
    text-decoration: underline;
}




/*** comments Box Css ***/
.comment-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 75px;
}

.comment-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 34px;
}

.comment-box .inner-title h2 {
    font-size: 26px;
    line-height: 30px;
}


.comment-box__inner {
    position: relative;
    display: block;
}

.comment-box .single-comment {
    position: relative;
    display: block;
    border: 1px solid #eeeeee;
    padding: 30px 30px 24px;
    margin-bottom: 30px;
}

.comment-box .single-comment-box {
    position: relative;
    display: block;
    padding-left: 70px;
    min-height: 70px;
}

.comment-box .single-comment-box--reply {
    margin-top: 43px;
    margin-left: 100px;
}



.comment-box .single-comment-box .img-holder {
    position: absolute;
    top: 0px;
    left: 0;
    width: 70px;
    height: 70px;
}

.comment-box .single-comment-box .img-holder img {
    width: 100%;
}

.comment-box .single-comment-box .text-holder {
    position: relative;
    display: block;
    padding-left: 30px;
    min-height: 70px;
}

.comment-box .single-comment-box .text-holder .top {
    position: relative;
    display: block;
}

.comment-box .single-comment-box .text-holder .top h3 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.comment-box .single-comment-box .text-holder .text {
    position: relative;
    display: block;
    padding-top: 9px;
}

.comment-box .single-comment-box .text-holder .text p {
    line-height: 26px;
}



.comment-box .single-comment .bottom-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 5px;
}

.comment-box .single-comment .bottom-box .date {
    position: relative;
    display: block;
    padding-right: 30px;
    color: #7c7c7c;
    font-size: 17px;
}

.comment-box .single-comment .bottom-box .date::before {
    content: "";
    position: absolute;
    top: 9px;
    right: 15px;
    bottom: 7px;
    width: 1px;
    background: #a5a5a5;
}

.comment-box .single-comment .reply {
    position: relative;
    display: block;
}

.comment-box .single-comment .reply a {
    color: var(--thm-base);
    font-size: 17px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.comment-box .single-comment .reply a:hover {
    color: var(--thm-black);
}




.reply-form-box {
    position: relative;
    display: block;
    padding-top: 75px;
}

.reply-form-box .title {
    position: relative;
    display: block;
    padding-bottom: 34px;
}

.reply-form-box .title h2 {
    font-size: 26px;
    line-height: 30px;
}

.reply-form-box #review-form {
    position: relative;
    display: block;
    background-color: #f7f7f7;
    padding: 50px 40px 50px;
    border: 1px solid #eeeeee;
}


.reply-form-box form .input-box {
    position: relative;
    display: block;
}

.reply-form-box form .input-box .icon {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 15px;
    color: var(--thm-gray);
}

.reply-form-box form input[type="text"],
.reply-form-box form input[type="email"],
.reply-form-box form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 50px;
    border: 1px solid #eeeeee;
    color: #737373;
    font-size: 16px;
    padding: 0 30px;
    margin-bottom: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
}

.reply-form-box form textarea {
    height: 150px;
    padding: 10px 30px;
    margin-bottom: 30px;
}

.reply-form-box form button {}

.reply-form-box form input[type="text"]:focus {
    border-color: #11161e;
}

.reply-form-box form input[type="email"]:focus {
    border-color: #11161e;
}

.reply-form-box form textarea:focus {
    border-color: #11161e;
}


/*** Thm Sidebar Box Css****/
.thm-sidebar-box {
    position: relative;
    display: block;
}

.single-sidebar-box {
    position: relative;
    display: block;
    margin-bottom: 50px;
}

.sidebar-title {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.sidebar-title h3 {
    color: var(--thm-black);
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    text-transform: capitalize;
}

.sidebar-title .border-box {
    position: relative;
    display: block;
    top: -4px;
    width: 35px;
    height: 2px;
    margin-left: 20px;
    background-color: #c5c9cc;
}



.sidebar-search-box {
    position: relative;
    display: block;
}

.sidebar-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.sidebar-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 52px;
    background-color: #f0f0f0;
    border: 1px solid #f0f0f0;
    color: #909090;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 60px;
    border-radius: 0px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.sidebar-search-box .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    height: 52px;
    color: var(--thm-black);
    font-size: 20px;
    background: rgba(var(--thm-black-rgb), .05);
    text-align: center;
    border: 0px solid #e7e7e8;
    transition: all 500ms ease 0s;
}

.sidebar-search-box .search-form button i {
    position: relative;
    top: 0px;
    font-weight: 600;
}

.sidebar-search-box .search-form input[type="text"]:focus {
    color: var(--thm-black);
}

.sidebar-search-box .search-form input[type="text"]:focus+button,
.sidebar-search-box .search-form button:hover {
    color: var(--thm-base);
}

.sidebar-search-box .search-form input::-webkit-input-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.sidebar-search-box .search-form input:-moz-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.sidebar-search-box .search-form input::-moz-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.sidebar-search-box .search-form input:-ms-input-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}



.sidebar-categories-box {
    position: relative;
    display: block;
    padding-top: 16px;
}

.sidebar-categories-box li {
    position: relative;
    display: block;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.sidebar-categories-box li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.sidebar-categories-box li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #444444;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
    font-family: var(--thm-font);
    letter-spacing: 0.0em;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.sidebar-categories-box li a span {
    color: #e6e6e6;
    font-size: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-categories-box li:hover a span {
    color: var(--thm-base);
}


.sidebar-categories-box li a:after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -6px;
    width: 0;
    height: 1px;
    background-color: var(--thm-base);
    transition: all 600ms ease 100ms;
    z-index: -1;
}

.sidebar-categories-box li a:hover:after {
    width: 100%;
}

.sidebar-categories-box li:hover a {
    color: var(--thm-base);
    padding-left: 5px;
}



.sidebar-blog-post {
    position: relative;
    display: block;
    padding-top: 26px;
}

.sidebar-blog-post .blog-post {
    position: relative;
    display: block;
}

.sidebar-blog-post .blog-post .news-post {
    position: relative;
    display: block;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.sidebar-blog-post .blog-post .news-post:last-child {
    border-bottom: none;
    padding: 0;
    margin-bottom: 0;
}

.sidebar-blog-post .blog-post .news-post .inner {
    position: relative;
    display: block;
    padding-left: 70px;
}

.sidebar-blog-post .blog-post .news-post .img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 65px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sidebar-blog-post .blog-post .news-post .img-box img {
    width: 100%;
}

.sidebar-blog-post .blog-post .news-post .img-box .overlay-content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(var(--thm-base-rgb), .80);
    border-radius: 0%;
    opacity: 0;
    transform: perspective(0px) scale(0);
    transform-origin: center;
    transition: all 0.5s ease-in-out 0s;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.sidebar-blog-post .blog-post .news-post:hover .img-box .overlay-content {
    opacity: 1;
    transform: perspective(400px) scale(1.0);
    transition: all 0.3s ease-in-out 0.3s;
}

.sidebar-blog-post .blog-post .news-post .img-box .overlay-content a {
    color: #ffffff;
    font-size: 14px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-blog-post .blog-post .news-post .title-box {
    position: relative;
    display: block;
    padding-left: 25px;
    min-height: 65px;
}

.sidebar-blog-post .blog-post .news-post .title-box h4 {
    position: relative;
    top: -5px;
    font-size: 17px;
    line-height: 22px;
    font-weight: 500;
    font-family: var(--thm-font);
    margin: 0 0 3px;
}

.sidebar-blog-post .blog-post .news-post .title-box h4 a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-blog-post .blog-post .news-post .title-box h4 a:hover {
    color: var(--thm-base);
}

.sidebar-blog-post .blog-post .news-post .title-box .date-box {
    position: relative;
    display: block;
}

.sidebar-blog-post .blog-post .news-post .title-box .date-box p {
    color: #091c55;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}



.popular-tag-box {
    position: relative;
    display: block;
    padding-top: 26px;
}

.single-sidebar-box .popular-tag {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -5px;
    margin-right: -5px;
}

.single-sidebar-box .popular-tag li {
    position: relative;
    display: block;
    float: left;
    margin: 0 5px 10px;
}

.single-sidebar-box .popular-tag li a {
    position: relative;
    display: block;
    padding: 8px 19px 8px;
    background: #ffffff;
    color: #404040;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    border: 1px solid #e4e4e4;
    text-transform: capitalize;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.single-sidebar-box .popular-tag li:hover a {
    color: var(--thm-base);
    border-color: var(--thm-base);
    background-color: #ffffff;
}

/*** 
=============================================
    Breadcrumb area style
=============================================
***/
.breadcrumb-area {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #ffffff;
    z-index: 10;
}

.breadcrumb-area.gray-bg {
    background-color: #ecf0f7;
}

.breadcrumb-area.black-bg {
    background-color: #090d30;
}

.breadcrumb-area:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 100px;
    right: 0;
    background-color: #090d30;
    z-index: -2;
}

.breadcrumb-area__inner {
    position: relative;
    display: block;
    max-width: 1730px;
    padding: 0 15px;
    margin: 0 auto;
}

.breadcrumb-area-bg {
    position: absolute;
    top: 0px;
    left: 15px;
    bottom: 0px;
    right: 15px;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
}

.breadcrumb-area .inner-content {
    position: relative;
    display: block;
    padding: 175px 0 178px;
}

.breadcrumb-area .title {
    position: relative;
    display: block;
    z-index: 1;
}

.breadcrumb-area .title h2 {
    color: #ffffff;
    font-size: 70px;
    line-height: 1.1em;
    font-weight: 900;
    text-transform: capitalize;
}


.breadcrumb-menu {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 12px;
    z-index: 1;
}

.breadcrumb-menu ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.breadcrumb-menu ul li {
    position: relative;
    float: left;
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    padding-right: 12px;
    margin-right: 12px;
}

.breadcrumb-menu ul li:before {
    content: "";
    position: absolute;
    top: 9px;
    right: 0;
    bottom: 7px;
    width: 1px;
    background-color: #ffffff;
    transform: rotate(12deg);
}

.breadcrumb-menu ul li:last-child:before {
    display: none;
}

.breadcrumb-menu ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.breadcrumb-menu ul li a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.breadcrumb-menu ul li:hover a,
.breadcrumb-menu ul li.active {
    color: var(--thm-base);
}

/*** 
=============================================
    Main Contact Form Area Css
=============================================
***/
.main-contact-form-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0px 120px;
    z-index: 10;
}


.contact-info-box-style1 {
    position: relative;
    display: block;
}

.contact-info-box-style1 .title {
    position: relative;
    display: block;
    margin-top: -6px;
    margin-bottom: 47px;
}

.contact-info-box-style1 .title h2 {
    font-size: 35px;
    line-height: 40px;
}

.contact-info-box-style1 .title p {
    line-height: 26px;
    margin: 24px 0 0;
}


.contact-info-1 {
    position: relative;
    display: block;
}

.contact-info-1 li {
    position: relative;
    display: block;
    padding-left: 55px;
}

.contact-info-1 li+li {
    margin-top: 42px;
}

.contact-info-1 li .icon {
    position: absolute;
    top: 1px;
    left: 0;
    width: 55px;
    color: var(--thm-base);
    font-size: 35px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-info-1 li:hover .icon {
    color: var(--thm-black);
}

.contact-info-1 li .text {
    position: relative;
    display: block;
}

.contact-info-1 li .text h3 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
}

.contact-info-1 li .text p {
    color: #444444;
    font-size: 18px;
    line-height: 26px;
    margin: 9px 0 0px;
}

.contact-info-1 li .text p a {
    color: #444444;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-info-1 li .text p a:hover {
    color: var(--thm-base);
}



.contact-form {
    position: relative;
    display: block;
}

.contact-form form {
    position: relative;
    display: block;
}

.contact-form form .form-group {
    position: relative;
    display: block;
    padding-bottom: 20px;
}

.contact-form form .input-box {
    position: relative;
    display: block;
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #e1e1e1;
    width: 100%;
    height: 50px;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.contact-form form input[type="text"]:focus,
.contact-form form input[type="email"]:focus,
.contact-form form textarea:focus {
    border: 1px solid var(--thm-base);
    outline: none;
}

.contact-form form textarea {
    height: 100px;
    padding-top: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
}

.contact-form form input[type="text"]::-webkit-input-placeholder {
    color: #444444;
}

.contact-form form input[type="text"]:-moz-placeholder {
    color: #444444;
}

.contact-form form input[type="text"]::-moz-placeholder {
    color: #444444;
}

.contact-form form input[type="text"]:-ms-input-placeholder {
    color: #444444;
}


.contact-form form input[type="email"]::-webkit-input-placeholder {
    color: #444444;
}

.contact-form form input[type="email"]:-moz-placeholder {
    color: #444444;
}

.contact-form form input[type="email"]::-moz-placeholder {
    color: #444444;
}

.contact-form form input[type="email"]:-ms-input-placeholder {
    color: #444444;
}


.contact-form form textarea::-webkit-input-placeholder {
    color: #444444;
}

.contact-form form textarea:-moz-placeholder {
    color: #444444;
}

.contact-form form textarea::-moz-placeholder {
    color: #444444;
}

.contact-form form textarea:-ms-input-placeholder {
    color: #444444;
}

.contact-form form .button-box {
    position: relative;
    display: block;
    padding-top: 6px;
}

.contact-form form .button-box button {
    color: #ffffff;
}

.contact-form form .button-box button:after {
    background-color: var(--thm-base);
}

.contact-form form .button-box button:before {
    background-color: var(--thm-black);
}



/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
    position: relative;
    display: block;
    background: #ffffff;
}

.google-map-outer-box {
    position: relative;
    display: block;
    border-top: 1px solid #d6d6d6;
    padding-top: 100px;
    margin-top: 100px;
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 400px;
    width: 100%;
    mix-blend-mode: luminosity;
}


/*** 
=============================================
    End Css
=============================================
***/
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}



.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}


.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    width: 100%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    color: var(--thm-base);
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: 700;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

/*
----------------------------------------------------------------
	remove the white gap for 4 sides in elementor
----]------------------------------------------------------------
*/
.elementor-section-wrap .elementor-section,
.elementor-column-gap-default>.elementor-column>.elementor-element-populated {
    padding: 0px !important;
}

.admin-bar .stricky-header {
    top: 32px;
}


/***************** Pagination Style*******************/
.pagination-wrapper {
    margin-top: 50px;
}

.pagination ul {
    position: relative;
    display: block;
}

.pagination li {
    position: relative;
    display: inline-block;
    margin: 0px 6px 0px;
}

.pagination li a,
.pagination li span {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 50px;
    border-radius: 0px;
    background: #ffffff;
    border: 1px solid #f2ece7;
    color: var(--thm-gray);
    font-size: 20px;
    line-height: 46px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    z-index: 1;
}

.pagination li:hover a,
.pagination li.active span,
.pagination li.active a,
.pagination li span.current {
    color: #ffffff;
    border-color: var(--thm-base);
    background: var(--thm-base);
}

.pagination li a.next,
.pagination li a.prev {
    width: 70px;
}

.single-flixible-price-style1-box ul {
    gap: 25px;
}

.single-flixible-price-style1-box ul li+li,
.single-service-areas-style1 ul li+li {
    margin-top: 0px;
}

.single-flixible-price-style1-box ul li {
    width: 47%;
}

.single-service-areas-style1 ul {
    gap: 10px;
}

.single-service-areas-style1 ul li {
    width: 24%;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    background-image: none;
}

.single-service-style1 .text h3 a br,
.single-service-style2 .text h3 a br,
.breadcrumb-area .title h2 br,
.breadcrumb-menu ul li br {
    display: none;
}

.appointment-checkbox input[type="checkbox"],
.newsletter-checkbox input[type="checkbox"] {
    display: inline-block;
    position: relative;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    vertical-align: middle;
    background: #aeb3b9;
    border: 1px solid #8e8f8f;
    cursor: pointer;
    border-radius: 0;
    transition: all 300ms ease;
}

.appointment-checkbox .single-checkbox p span,
.newsletter-checkbox p span {
    margin: 0px;
}

.single-footer-widget .our-company-info {
    padding-right: 0px;
}

.single-footer-widget .title h3 {
    margin-bottom: 30px;
}

/***************** Footer Widget Style*******************/
.footer-widget {
    position: relative;
}

.footer-widget ul,
.footer-widget ol {
    position: relative;
    margin: 0px;
    padding: 0px;
}

.footer-widget ul li,
.footer-widget ol li {
    position: relative;
    display: block;
    margin-bottom: 12px;
    font-size: 17px;
    color: #999999;
    font-weight: 400;
}

.footer-widget ul li:last-child,
.footer-widget ol li:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.footer-widget ul li ul li,
.footer-widget ol li ol li {
    margin-bottom: 0px;
    margin-top: 12px;
    margin-left: 15px;
}

.footer-widget ul li a,
.footer-widget ol li a {
    position: relative;
    display: inline-block;
    color: #bcc1c9;
    font-size: 17px;
    font-weight: 400;
    font-family: var(--thm-font);
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.footer-widget ul li a:hover,
.footer-widget ol li a:hover {
    color: #ffffff;
}

/***************** Blog Sidebar Style*******************/
.widget .sidebar-title {
    margin-bottom: 20px;
}

.widget {
    position: relative;
    margin-bottom: 45px;
}

.widget ul,
.widget ol {
    position: relative;
    margin: 0px;
    padding: 0px;
}

.widget ul li,
.widget ol li {
    position: relative;
    display: block;
    margin-bottom: 8px;
    padding-bottom: 8px;
    padding-right: 15px;
    border-bottom: 1px solid #e6e6e6;
    text-transform: capitalize;
    color: #444444;
}

.widget ul li:before,
.widget ol li:before {
    position: absolute;
    content: "\e918";
    font-family: 'icomoon' !important;
    top: 0px;
    font-size: 10px;
    right: 0px;
    font-weight: 300;
    color: #c8c8c8;
    transition: all 500ms ease;
}

.widget ul li:hover:before,
.widget ol li:hover:before {
    color: var(--thm-base);
}

.widget ul li:last-child,
.widget ol li:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.widget ul li ul li,
.widget ol li ol li {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
    margin-top: 8px;
    padding-top: 8px;
    margin-left: 15px;
    border-top: 1px solid #e6e6e6;
}

.widget ul li ul li:before,
.widget ol li ol li:before {
    top: 8px;
}

.widget ul li a,
.widget ol li a {
    position: relative;
    display: inline-block;
    color: #444444;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
    font-family: var(--thm-font);
    letter-spacing: 0.0em;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.widget ul li a:hover,
.widget ol li a:hover {
    color: var(--thm-base);
}

/********** Tagcloud ***********/
.widget .tagcloud {
    position: relative;
}

.widget .tagcloud a {
    position: relative;
    display: inline-block;
    margin: 0 5px 10px;
    padding: 8px 19px 8px;
    background: #ffffff;
    color: #404040;
    font-size: 16px !important;
    line-height: 22px;
    font-weight: 500;
    border: 1px solid #e4e4e4;
    text-transform: capitalize;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.widget .tagcloud a:hover {
    color: var(--thm-base);
    border-color: var(--thm-base);
    background-color: #ffffff;
}

/*------------------------- team-details -------------------------*/
.team-details {
    position: relative;
    padding: 120px 0px 120px 0px;
    background-color: #fff;
    z-index: 99;
}

.team-details .image-box {
    position: relative;
    display: block;
    padding-right: 40px;
    padding-bottom: 66px;
}

.team-details .image-box img {
    width: 100%;
}

.team-details .image-box .image-2 {
    position: absolute;
    left: 0px;
    bottom: 66px;
}

.team-details .image-box .image-shape {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 271px;
    height: 231px;
    background-repeat: no-repeat;
    z-index: -1;
}

.team-details .content-box {
    position: relative;
    display: block;
    margin-top: -14px;
}

.team-details .content-box h2 {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 54px;
    font-weight: 700;
    margin-bottom: 14px;
}

.team-details .content-box h2 span {
    font-size: 36px;
    display: block;
}

.team-details .content-box .designation {
    position: relative;
    display: block;
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 31px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00a0eb;
}

.team-details .content-box .text {
    position: relative;
    display: block;
    margin-bottom: 38px;
}

.team-details .content-box .text p {
    margin-bottom: 26px;
}

.team-details .content-box .text h3 {
    display: block;
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f1f1f;
}

.team-details .content-box .text .list-item li {
    position: relative;
    display: block;
    padding-left: 30px;
    margin-bottom: 13px;
}

.team-details .content-box .text .list-item li:last-child {
    margin-bottom: 0px;
}

.team-details .content-box .text .list-item li:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    left: 0px;
    top: 6px;
    background-image: url(../images/icon-10.png);
    background-repeat: no-repeat;
    font-family: 'Font Awesome 5 Pro';
}

.team-details .content-box .contact-inner h6 {
    display: block;
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
    color: #1f1f1f;
    margin-bottom: 15px;
}

.team-details .content-box .contact-inner h3 {
    display: block;
    font-size: 18px;
    line-height: 38px;
    font-weight: 600;
    margin-bottom: 21px;
}

.team-details .content-box .contact-inner h3 a {
    display: inline-block;
    color: #1f1f1f;
}

.team-details .content-box .contact-inner h3 a:hover {
    color: #00a0eb;
}

.team-details .content-box .social-links li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}

.team-details .content-box .social-links li:last-child {
    margin: 0px !important;
}

.team-details .content-box .social-links li a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 52px;
    text-align: center;
    border: 1px solid #d6d6d5;
    border-radius: 50%;
    font-size: 16px;
    color: #87827f;
}

.team-details .content-box .social-links li a:hover {
    color: #fff;
}

.team-section.team-page-1 {
    background: #1f1f1f;
    padding-bottom: 90px;
}

.team-section.team-page-1 .team-block-one .inner-box {
    margin-bottom: 30px;
}

.team-section.alternat-2 .team-block-one .inner-box {
    margin-bottom: 30px;
}

.team-section.alternat-2 {
    padding-bottom: 90px;
}

.team-details .content-box .social-links li a:hover {
    background: #00a0eb;
    border-color: #00a0eb;
}

.service-details-page1__content.pl-0,
.blog-page-one .content-side.pl-0 .blog-page-content {
    padding-right: 0px;
    padding-left: 30px;
}

/***************** Service Sidebar Style*******************/
.service-widget ul {
    position: relative;
    margin-bottom: 60px;
}

.service-widget ul li {
    position: relative;
    display: block;
    margin-bottom: 3px;
}

.service-widget ul li:last-child {
    margin-bottom: 0px;
}

.service-widget ul li a {
    position: relative;
    display: block;
    background-color: #f1f1f1;
    border-bottom: 3px solid #ffffff;
    padding: 12px 30px 12px;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.service-widget ul li:hover a,
.service-widget ul li.current-menu-item a {
    color: #fff;
    padding-left: 60px;
    background: #005cb4;
}

.service-widget ul li a:before {
    content: "";
    position: absolute;
    top: 25px;
    left: 30px;
    width: 0px;
    height: 1px;
    background-color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-widget ul li a:hover:before,
.service-widget ul li.current-menu-item a:before {
    width: 15px;
}

.single-blog-style4.style-two .img-holder .inner .date-box,
.blog-details-area .single-blog-style4 .img-holder .inner .date-box {
    width: 160px;
    height: 50px;
}

.single-blog-style4.style-two .img-holder .inner .date-box h2,
.blog-details-area .single-blog-style4 .img-holder .inner .date-box h2 {
    font-size: 14px;
}

.single-comment-box .reply-form-box {
    padding-top: 30px;
    padding-bottom: 25px;
}

.ACREX-comment-item .ACREX-comment-item {
    margin-left: 70px;
}

.comment-box .comment-box__inner>.ACREX-comment-item:last-child .single-comment {
    margin-bottom: 0px;
}

.main-map-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0px 120px;
    z-index: 10;
}

.owl-carousel .owl-dots.disabled {
    display: block;
}

.owl-dots-none .owl-carousel .owl-dots.disabled {
    display: none;
}

/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
    position: relative;
    margin: 0 auto 60px;
    padding: 0;
    zoom: 1;
}

.bx-wrapper img {
    max-width: 100%;
    display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
    -moz-box-shadow: 0 0 5px #ccc;
    -webkit-box-shadow: 0 0 5px #ccc;
    box-shadow: 0 0 5px #ccc;
    border: 5px solid #fff;
    left: -5px;
    background: #fff;

    /*fix other elements on the page moving (on Chrome)*/
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: -30px;
    width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
    min-height: 50px;
    background: url(../images/icon/bx_loader.gif) center center no-repeat #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
    text-align: center;
    font-size: .85em;
    font-family: Arial;
    font-weight: bold;
    color: #666;
    padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    display: inline-block;
    zoom: 1;
    display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #666;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
    left: 10px;
    background: url(../img/bx-slider/controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
    right: 10px;
    background: url(../img/bx-slider/controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
    background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
    background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
    display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
    text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
    display: block;
    text-indent: -9999px;
    width: 10px;
    height: 11px;
    outline: 0;
    background: url(../img/bx-slider/controls.png) -86px -11px no-repeat;
    margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
    background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
    display: block;
    text-indent: -9999px;
    width: 9px;
    height: 11px;
    outline: 0;
    background: url(../img/bx-slider/controls.png) -86px -44px no-repeat;
    margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
    background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
    text-align: left;
    width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
    right: 0;
    width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #6669;
    background: rgba(80, 80, 80, 0.75);
    width: 100%;
}

.bx-wrapper .bx-caption span {
    color: #fff;
    font-family: Arial;
    display: block;
    font-size: .85em;
    padding: 10px;
}

.jarallax {
    position: relative;
    z-index: 0;
}

.jarallax>.jarallax-img {
    position: absolute;
    object-fit: cover;
    /* support for plugin https://github.com/bfred-it/object-fit-images */
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
    border: 5px dashed rgba(0, 0, 0, 0.70);
}

.mfp-iframe-holder .mfp-close {
    top: -45px;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 0, 0, 0.70);
    border-radius: 0%;
    padding: 0;
    text-align: center;
    right: -5px;
    line-height: 38px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;

    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}



.elementor-kit-10 {
    --e-global-color-primary: #6EC1E4;
    --e-global-color-secondary: #54595F;
    --e-global-color-text: #7A7A7A;
    --e-global-color-accent: #61CE70;
    --e-global-typography-primary-font-family: "Roboto";
    --e-global-typography-primary-font-weight: 600;
    --e-global-typography-secondary-font-family: "Roboto Slab";
    --e-global-typography-secondary-font-weight: 400;
    --e-global-typography-text-font-family: "Roboto";
    --e-global-typography-text-font-weight: 400;
    --e-global-typography-accent-font-family: "Roboto";
    --e-global-typography-accent-font-weight: 500;
}

.elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 1140px;
}

.e-con {
    --container-max-width: 1140px;
}

.elementor-widget:not(:last-child) {
    margin-block-end: 20px;
}

.elementor-element {
    --widgets-spacing: 20px 20px;
}

h1.entry-title {
    display: var(--page-title-display);
}



.elementor-29 .elementor-element.elementor-element-fa0b9ca .owl-carousel .owl-nav .owl-prev {
    position: relative;
}

.elementor-29 .elementor-element.elementor-element-fa0b9ca .service-style1-carousel.owl-nav-style-one.owl-theme .owl-nav:after {
    position: relative;
}

.elementor-29 .elementor-element.elementor-element-fa0b9ca .owl-carousel .owl-dots {
    position: relative;
}

.elementor-29 .elementor-element.elementor-element-543ae70 .owl-carousel .owl-nav button span {
    color: #FFFFFF !important;
}

/*
 * Theme Name: ACREX
 * Author: Theme Arc
 * Author URI: http://themeforest.net/user/themearc
 * Theme URI: https://themes.themearc.com/wp/ACREX/
 * Description: ACREX is the ultimate auto glass repair WordPress Theme. Build website for Car workshops, car upholstery, deep cleaning, interior cleaning. ACREX automobile theme comes with the special service extensions like wheel alignments, engine tune-up and lubrication.
 * Version: 1.1
 * License: This theme or plugin is comprised of two parts. (1) the PHP code and integrated HTML are licensed under the General Public License (GPL). You will find a copy of the GPL in the same directory as this text file. (2) All other parts, but not limited to the CSS code, images, and design are licensed according to the license purchased from Envato.  Read more about licensing here: http://themeforest.net/licenses
 * License URI: license.txt
 * Tags: blog, two-columns, left-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
 * Text Domain: ACREX
 * Tested up to: 6.2
 * Requires PHP: 7.2
*/
.wp-caption {
    margin-bottom: 2px;
}

.wp-caption-text {
    margin-bottom: 5px;
}

.screen-reader-text {
    margin-bottom: 12px;
}

.gallery-caption {
    margin-bottom: 2px;
}

.bypostauthor {
    margin-bottom: 2px;
}

.alignleft {
    float: left;
    margin-bottom: 20px;
    margin-right: 20px;
    max-width: 100%;
}

.alignright {
    float: right !important;
    margin-bottom: 20px;
    margin-left: 20px;
    max-width: 100%;
}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
}

.col-md-4 .funfact-meta>i {
    right: 27px;
}

.mycustom-pricing {
    background-color: #090909 !important;
}

.on-hover {
    display: none;
    animation: fadeOut 0.5s;
}

.hver:hover .on-hover {
    display: block;
    animation: fadeIn 0.5s;
}

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/


/*== Default Css ==*/

:root {
    --thm-font: 'Barlow', sans-serif;
    --thm-font-2: 'Roboto', sans-serif;
    --thm-font-3: 'Yantramanav', sans-serif;
    --thm-font-4: 'Playfair Display', serif;
    --thm-base: #d90429;
    --thm-base-rgb: 217, 4, 41;
    --thm-gray: #444444;
    --thm-gray-rgb: 68, 68, 68;
    --thm-white: #ffffff;
    --thm-white-rgb: 255, 255, 255;
    --thm-black: #051d3e;
    --thm-black-rgb: 5, 29, 62;
    --thm-primary: #0b67b4;
    --thm-primary-rgb: 11, 103, 180;
    --thm-gray-bg: #ecf0f7;
    --thm-gray-bg-rgb: 236, 240, 247;
    --thm-main-bg: #090d30;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
    font-family: var(--thm-font);
    color: var(--thm-gray);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-gray);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    font-family: var(--thm-font-2);
    font-weight: 700;
    margin: 0;
}

p {
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}



::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol,
li {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    width: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}



/* Form validation styles */
input:focus,
textarea:focus,
select:focus {
    border-color: #43c3ea;
    outline: none;
}

#contact-form input[type="text"].error {
    border-color: red;
}

#contact-form input[type="email"].error {
    border-color: red;
}

#contact-form select.error {
    border-color: red;
}

#contact-form textarea.error {
    border-color: red;
}

#contact-form label.error {
    display: none !important;
}


/** Thm Social Link **/
.thm-social-link {
    position: relative;
    display: block;
    padding-top: 30px;
}

.thm-social-link ul {
    position: relative;
    display: block;
}

.thm-social-link ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.thm-social-link ul li:last-child {
    margin-right: 0;
}

.thm-social-link ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: rgba(var(--thm-black-rgb), 1.0);
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.thm-social-link ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: rgba(var(--thm-base-rgb), 1.0);
    border-radius: 5px;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.thm-social-link ul li:hover a:before {
    opacity: 1.0;
    transform: scale(1.0);
}

.thm-social-link ul li:hover a {
    color: #ffffff;
}



/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
    position: fixed;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    cursor: url(../images/cross-out.png), pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: .9;
    visibility: visible;
    transition-delay: 0.3s;
    right: 100%;
    background-color: #000000;
}

.xs-sidebar-widget {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    max-width: 460px;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 700ms ease 100ms;
    visibility: hidden;
    opacity: 1;
    z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0;
    transition: all 500ms ease 800ms;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 700ms ease 1500ms;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    z-index: 0;
    background-color: #000000;
}



.sidebar-textwidget {
    padding: 50px 45px;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

.xs-sidebar-group .widget-heading a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--thm-black);
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
    color: var(--thm-base);
    border-color: var(--thn-base);
}


.xs-sidebar-group .content-inner .logo {
    position: relative;
    display: block;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
    position: relative;
    display: inline-block;
}

.xs-sidebar-group .content-inner h3 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 22px;
}

.xs-sidebar-group .content-inner .content-box {
    position: relative;
    display: block;
    padding-top: 33px;
    padding-bottom: 47px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
    position: relative;
    display: block;
}

.xs-sidebar-group .content-inner .content-box p {
    color: var(--thm-gray);
}



.xs-sidebar-group .content-inner .sidebar-contact-info {
    position: relative;
    display: block;
}

.xs-sidebar-group .content-inner .sidebar-contact-info h3 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 27px;
}

.sidebar-contact-info ul {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.sidebar-contact-info ul li:last-child {
    margin-bottom: 0;
}

.sidebar-contact-info ul li .inner {
    position: relative;
    display: block;
    padding-left: 45px;
}

.sidebar-contact-info ul li .inner .icon {
    position: absolute;
    top: 0px;
    left: 0;
}

.sidebar-contact-info ul li .inner .icon span {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-size: 27px;
    line-height: 27px;
}

.sidebar-contact-info ul li .inner .icon span.map-marker {
    position: relative;
    top: 8px;
    font-size: 32px;
}

.sidebar-contact-info ul li .inner .text {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li .inner .text p {
    line-height: 24px;
}

.sidebar-contact-info ul li .inner .text p a {
    color: var(--thm-gray);
}



.xs-sidebar-group .content-inner .side-content-newsletter-box {
    position: relative;
    display: block;
    padding-top: 49px;
}

.xs-sidebar-group .content-inner .side-content-newsletter-box h3 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 24px;
}

.side-content-newsletter-box .form-group input[type='email'] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    background-color: rgb(248, 248, 248);
    border: 1px solid #e3dfdf;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 6px;
    font-family: var(--thm-font);
}

.side-content-newsletter-box .form-group button {
    margin-top: 30px;
}






/*== Review Css ======*/
.review-box {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 15px;
}

.review-box ul {
    display: block;
    overflow: hidden;
}

.review-box ul li {
    display: inline-block;
    float: left;
    margin-right: 4px;
    cursor: pointer;
}

.review-box ul li:last-child {
    margin-right: 0px;
}

.review-box ul li i {
    color: #febd2f;
    font-size: 15px;
}



/*== Section Title Css ======*/
.sec-title {
    position: relative;
    display: block;
    margin-top: -6px;
    padding-bottom: 49px;
}

.sec-title .sub-title {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 13px;
}

.sec-title .sub-title .border-left {
    position: relative;
    display: block;
    top: -1px;
    background-color: var(--thm-base);
    width: 20px;
    height: 2px;
}

.sec-title .sub-title .border-right {
    position: relative;
    display: block;
    top: -1px;
    background-color: var(--thm-base);
    width: 20px;
    height: 2px;
}


.sec-title .sub-title h5 {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: 10px;
}

.sec-title h2 {
    color: var(--thm-black);
    font-size: 45px;
    line-height: 1.2em;
    font-weight: 900;
    text-transform: none;
}






/*== Btn One Css ======*/
.btn-box {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.btn-one {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-left: 35px;
    padding-right: 35px;
    background-color: transparent;
    color: #ffffff;
    font-size: 15px;
    line-height: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 5px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-family: var(--thm-font-2);
    z-index: 2;
}

.btn-one:before {
    position: absolute;
    top: 0px;
    left: 100%;
    right: -50px;
    content: "";
    background: var(--thm-base);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    border-radius: 0%;
    transition-duration: 800ms;
    z-index: 1;
    bottom: 0;
}

.btn-one:hover:before {
    left: 0;
    right: 0px;
}

.btn-one:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border-radius: 5px;
    opacity: 1;
    transform: scaleX(1.0);
    transition-duration: 800ms;
    background-image: -moz-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    z-index: -1;
}

.btn-one:hover:after {
    transform: scaleX(0);
    transition-duration: 1500ms;
}

.btn-one .txt {
    position: relative;
    z-index: 1;
}

.btn-one:hover,
.btn-one:focus {
    color: #ffffff;
}

.btn-one i {
    position: relative;
    top: 3px;
    display: inline-block;
    padding-left: 5px;
    font-size: 20px;
}



.btn-two {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-base);
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.btn-two span {
    position: relative;
    top: -1px;
    display: inline-block;
    padding-left: 10px;
    color: var(--thm-black);
    font-size: 16px;
}

.btn-two:hover {
    color: var(--thm-black);
    letter-spacing: 0.05em;
}




/*== Owl Dot Style One Css ======*/
.owl-carousel.owl-dot-style1 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 50px !important;
    display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #034087;
    border: 0px solid #a5a5a5;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active {
    background-color: var(--thm-base);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-base);
    border-radius: 50%;
    transform: scale(0);
    transition: all 500ms ease;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active:before {
    transform: scale(1.0);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {
    display: none;
}



/*== Owl Dot Style Two Css ======*/
.owl-carousel.owl-dot-style2 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 30px !important;
    display: block;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 5px solid #ffffff;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    border: 1px solid var(--thm-base);
    border-radius: 50%;
    transform: scale(0);
    transition: all 500ms ease;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active {
    border: 5px solid #1a1c23;
    background-color: var(--thm-base);
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active:before {
    transform: scale(1.0);
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot span {
    display: none;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active span {}








/*== Owl Nav Style One Css ======*/
.owl-nav-style-one {}

.owl-nav-style-one .owl-controls {}

.owl-nav-style-one.owl-theme .owl-stage-outer {
    position: relative;
    display: block;
    padding-top: 0px;
    padding-bottom: 0px;
}

.owl-nav-style-one.owl-theme .owl-nav {
    position: relative;
    display: block;
    line-height: 0;
    margin: 0;
    z-index: 10;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid #a7afb6;
    border-radius: 50%;
    margin: 0 10px;
    padding: 0;
    z-index: 1;
    transition: all 700ms ease 0s;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    background-color: var(--thm-base);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(0);
    transform: perspective(400px) rotateX(0deg) scale(0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover::before {
    opacity: 1.0;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
    transform: perspective(400px) rotateX(0deg) scale(1.0);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    position: relative;
    display: block;
    color: #a7afb6;
    font-size: 14px;
    line-height: 46px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
    transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav .owl-next {
    transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover {}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover span {
    color: #ffffff
}




/*== Scrool To Top Css ======*/
.scroll-to-top {
    position: fixed;
    right: -10px;
    bottom: 80px;
    transform: rotate(90deg);
    z-index: 99999999999;
}

.scroll-to-top .visible {
    visibility: visible !important;
    opacity: 1 !important;
}

.scroll-to-top .scroll-top-inner {
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top .scroll-top-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}

.scroll-to-top .scroll-bar {
    width: 50px;
    height: 3px;
    margin-right: 10px;
    position: relative;
}

.scroll-to-top .scroll-bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--thm-base);
    opacity: 1.0;
}

.scroll-to-top .scroll-bar .bar-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #3b3b3b;
}

.scroll-to-top .scroll-bar-text {
    color: #363636;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--thm-font-2);
    transition: all 500ms ease;
}

.scroll-to-top .scroll-bar-text:hover {
    transform: scale(1.0);
}






/*== Styled Pagination Css ======*/
.styled-pagination {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 20px;
}

.styled-pagination.pdtop0 {
    padding-top: 0;
}

.styled-pagination li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.styled-pagination li:last-child {
    margin-right: 0;
}

.styled-pagination li a {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 50px;
    border-radius: 0px;
    background: #ffffff;
    border: 1px solid #f2ece7;
    color: var(--thm-gray);
    font-size: 20px;
    line-height: 46px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    z-index: 1;
}

.styled-pagination li a span:before {
    position: relative;
    top: 1px;
}

.styled-pagination li.prev a span:before {
    position: relative;
    display: inline-block;
}

.styled-pagination li.next a span:before {
    position: relative;
    display: inline-block;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
    color: #ffffff;
    border-color: var(--thm-base);
    background: var(--thm-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
    width: 70px;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
    color: #ffffff;
}



/*== checked Css Css ======*/
.checked-box1 {
    position: relative;
    display: block;
    min-height: 20px;
}

.checked-box1 label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    cursor: pointer;
    min-height: 20px;
    font-family: var(--thm-font);
}

.checked-box1 input[type="checkbox"] {
    display: none;
}

.checked-box1 input[type="checkbox"]+label span {
    position: absolute;
    top: 2px;
    left: 0;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid #f2ece7;
    cursor: pointer;
    border-radius: 0px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box1 label span:before {
    font-family: 'icomoon' !important;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    content: "\e918";
    color: var(--thm-base);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    margin: 0px;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checked-box1 input[type="checkbox"]:checked+label span {
    border-color: #f2ece7;
}

.checked-box1 input[type="checkbox"]:checked+label span:before {
    opacity: 1.0;
}



/*== Accordion Box Css ======*/
.accordion-box {
    position: relative;
    display: block;
}

.accordion-box .block {
    position: relative;
    display: block;
    margin-bottom: 20px;
    transition: all 500ms ease;
}

.accordion-box .block:last-child {
    margin-bottom: 0px;
}

.accordion-box .block .acc-btn {
    position: relative;
    display: block;
    cursor: pointer;
    background: #ffffff;
    padding-top: 14px;
    padding-left: 55px;
    padding-bottom: 14px;
    padding-right: 20px;
    border: 1px solid #d4d4d4;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active {
    background: #ffffff;
    border-bottom: 1px solid transparent;
}

.accordion-box .block .acc-btn h3 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h3 {
    color: var(--thm-base);
}

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 20px;
    height: 20px;
    color: var(--thm-black);
    font-size: 18px;
    text-align: right;
    line-height: 20px;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(-50%) rotate(0deg);
    transition: all 500ms ease;
    z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer {
    color: var(--thm-base);
    transform: translateY(-50%) rotate(0deg);
}

.accordion-box .block .acc-btn .icon-outer i:before {
    font-weight: 700;
}

.accordion-box .block .acc-btn.active .icon-outer i:before {
    content: "\e973";
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
    padding-top: 1px;
    padding-left: 55px;
    padding-bottom: 27px;
    padding-right: 20px;
    border: 1px solid #d4d4d4;
    border-top: 1px solid transparent;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .acc-content p {
    margin: 0;
}




/* Accordion Box Style1 Css */
.accordion-box-style1 {
    position: relative;
    display: block;
}

.accordion-box-style1 .accordion {
    position: relative;
    display: block;
    background: #ffffff;
    margin-bottom: 47px;
}

.accordion-box-style1 .accordion.mar0 {
    margin: 0;
}

.accordion-box-style1 .accordion .accord-btn {
    position: relative;
    display: block;
    cursor: pointer;
    padding-left: 30px;
    transition: all 500ms ease;
}

.accordion-box-style1 .accordion .accord-btn h4 {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    transition: all 500ms ease;
}

.accordion-box-style1 .accordion .accord-btn::after {
    font-family: 'icomoon' !important;
    position: absolute;
    content: "\e972";
    top: 50%;
    left: 0px;
    margin-top: -1px;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    text-align: left;
    transform: translateY(-50%);
    transition: all 500ms ease 0s;
}

.accordion-box-style1 .accordion .accord-btn.active {
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.accordion-box-style1 .accordion .accord-btn.active h4 {
    color: var(--thm-base);
}

.accordion-box-style1 .accordion .accord-btn.active:after {
    color: var(--thm-base);
    content: "\e973";
}

.accordion-box-style1 .accordion .accord-content {
    position: relative;
    padding-top: 13px;
    padding-bottom: 1px;
    padding-left: 30px;
    padding-right: 30px;
    display: none;
}

.accordion-box-style1 .accordion .accord-content.collapsed {
    display: block;
}

.accordion-box-style1 .accordion .accord-content p {
    color: #444444;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin: 0;
}







/*== Search Popup Css ======*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.90;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__content .thm-btn {
    padding: 0;
    width: 68px;
    height: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-base);
    border: 0;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    color: #ffffff;
    font-size: 25px;
}

.search-popup__content .thm-btn i {
    background-color: transparent;
    margin-left: 0;
}

.search-popup__content .thm-btn:hover {
    background-color: var(--thm-base);
}




/* Preloader */
.handle-preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    z-index: 9999999;
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    margin: 0 auto;
    animation: spinner 1s infinite linear;
}

.handle-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .spinner {
    border: 5px solid #ffffff;
    border-top-color: rgba(255, 255, 255, 0.10);
}

/* AnimaciĆĀ³n del preloader */
@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.loader-wrap .layer-one {
    position: absolute;
    left: 0%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-two {
    position: absolute;
    left: 33.3333%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-three {
    position: absolute;
    left: 66.6666%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #090d30;
}








/*****
  .handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    position: relative;
    display: inline-block;
    font-family: var(--thm-font-3);
    font-weight: 700;
    letter-spacing: 15px;
    font-size: 70px;
    line-height: 70px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    animation: letters-loading 4s infinite;
    content: attr(data-text-preloader);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.1s;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.2s;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.3s;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.4s;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 0.5s;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 0.6s;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 0.7s;
  }
  
  .handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
    animation-delay: 0.8s;
  }
  ***/




.footer-social-link-style1 {
    position: relative;
    display: block;
}

.footer-social-link-style1 ul {
    position: relative;
    display: block;
}

.footer-social-link-style1 ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.footer-social-link-style1 ul li:last-child {
    margin-right: 0;
}

.footer-social-link-style1 ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: #ffffff;
    border: 1px solid #f2ece7;
    border-radius: 50%;
    color: #a5a2a0;
    font-size: 14px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.footer-social-link-style1 ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-base);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.footer-social-link-style1 ul li:hover a:before {
    opacity: 1.0;
    transform: scale(1.0);
}

.footer-social-link-style1 ul li:hover a {
    color: #ffffff;
    border-color: var(--thm-base);
}



@-webkit-keyframes pulse10 {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ee212b;
        box-shadow: 0 0 0 0 #ee212b;
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    }
}

@keyframes pulse10 {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ee212b;
        box-shadow: 0 0 0 0 #ee212b;
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    }
}



/*** ACREX Form Style1***/
.ACREX-form-style1 {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    float: right;
    padding: 39px 30px 40px;
}

.ACREX-form-style1 .top-title {
    position: relative;
    display: block;
    text-align: center;
    padding: 0 0 28px;
}

.ACREX-form-style1 .top-title h2 {
    color: #ffffff;
    font-size: 38px;
    line-height: 40px;
    font-weight: 900;
    margin: 0 0 4px;
}

.ACREX-form-style1 .top-title p {
    color: #ffffff;
}



.ACREX-form-style1 form {
    position: relative;
    display: block;
}

.ACREX-form-style1 form .row {
    --bs-gutter-x: 10px;
}

.ACREX-form-style1 form .form-group {
    position: relative;
    display: block;
    padding-bottom: 10px;
}

.ACREX-form-style1 form .input-box {
    position: relative;
    display: block;
}

.ACREX-form-style1 form input[type="text"],
.ACREX-form-style1 form input[type="email"],
.ACREX-form-style1 form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #ffffff;
    width: 100%;
    height: 50px;
    color: #5d5d5d;
    font-size: 17px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 4px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.ACREX-form-style1 form input[type="text"]:focus,
.ACREX-form-style1 forminput[type="email"]:focus,
.ACREX-form-style1 form textarea:focus {
    border: 1px solid var(--thm-black);
    outline: none;
}

.ACREX-form-style1 form textarea {
    height: 115px;
    padding-top: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
}

.ACREX-form-style1 form input[type="text"]::-webkit-input-placeholder {
    color: #5d5d5d;
}

.ACREX-form-style1 form input[type="text"]:-moz-placeholder {
    color: #5d5d5d;
}

.ACREX-form-style1 form input[type="text"]::-moz-placeholder {
    color: #5d5d5d;
}

.ACREX-form-style1 form input[type="text"]:-ms-input-placeholder {
    color: #5d5d5d;
}


.ACREX-form-style1 form input[type="email"]::-webkit-input-placeholder {
    color: #5d5d5d;
}

.ACREX-form-style1 form input[type="email"]:-moz-placeholder {
    color: #5d5d5d;
}

.ACREX-form-style1 form input[type="email"]::-moz-placeholder {
    color: #5d5d5d;
}

.ACREX-form-style1 form input[type="email"]:-ms-input-placeholder {
    color: #5d5d5d;
}



.ACREX-form-style1 form .select-box {
    position: relative;
    display: block;
    width: 100%;
}

.ACREX-form-style1 form .nice-select {
    position: relative;
    display: block;
    background-color: #ffffff;
    border-radius: 4px;
    border: solid 1px #ffffff;
    width: 100%;
    height: 50px;
    color: #5d5d5d;
    font-size: 17px;
    font-weight: 400;
    line-height: 48px;
    outline: none;
    padding-left: 20px;
    padding-right: 20px;
    transition: all 0.2s ease-in-out;
    font-family: var(--thm-font);
}

.ACREX-form-style1 form .nice-select:after {
    position: absolute;
    content: "\e926";
    font-family: 'icomoon' !important;
    color: #626378;
    font-size: 12px;
    top: 0px;
    right: 25px;
    bottom: 0;
    margin: 0px;
    font-weight: 400;
    border: none !important;
    transform: rotate(0deg) !important;
}

.ACREX-form-style1 form .nice-select .list {
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
}

.ACREX-form-style1 form .nice-select .option {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 40px;
    min-height: 40px;
}

.ACREX-form-style1 form .button-box {
    position: relative;
    display: block;
    padding-top: 0px;
}

.ACREX-form-style1 form .button-box button {
    width: 100%;
}

.ACREX-form-style1 form .button-box button:hover {
    color: var(--thm-black);
}

.ACREX-form-style1 form .button-box button:after {
    background-image: none;
    background-color: #151735;
}

.ACREX-form-style1 form .button-box button:before {
    background-color: #ffffff;
}




/*------------------------------------------
    cta style5 Area Css
  --------------------------------------------*/
.cta-style5-area {
    position: relative;
    display: block;
    background-color: #090d30;
    z-index: 11;
}

.cta-style5-area__inner {
    position: relative;
    margin-left: -70px;
    margin-right: 30px;
    background: #dbe5f0;
}

.emergency-service-box {
    position: absolute;
    bottom: 0;
    right: -295px;
    width: 296px;
    background: #c6d0dd;
    padding: 47px 40px 35px;
}

.emergency-service-box .arrow {
    position: absolute;
    top: 110px;
    right: 80px;
    color: var(--thm-black);
    font-size: 60px;
}

.emergency-service-box h2 {
    font-size: 28px;
    line-height: 36px;
    margin: 0 0 38px;
}

.emergency-service-box h3 {
    font-size: 26px;
    line-height: 30px;
    margin: 0 0 3px;
}

.emergency-service-box h4 {
    font-size: 28px;
    line-height: 30px;
    font-family: var(--thm-font);
}

.emergency-service-box h4 a {
    color: var(--thm-base);
}

.emergency-service-box p {
    color: var(--thm-black);
    font-size: 19px;
    line-height: 24px;
    margin: 31px 0 0;
}


.cta-style5-area__inner ul {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.cta-style5-area__inner ul li {
    flex: 0 0 auto;
    width: 33.3333333333%;
    text-align: center;
    border-right: 1px solid #090d30;
}

.single-cta-style5-box {
    position: relative;
    display: block;
    padding: 20px 0 26px;
}

.single-cta-style5-box .icon {
    position: relative;
    display: block;
    padding-bottom: 15px;
}

.single-cta-style5-box .icon img {
    position: relative;
    display: inline-block;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.single-cta-style5-box:hover .icon img {
    transform: rotateY(180deg) scale(1.0);
}

.single-cta-style5-box .inner-title {
    position: relative;
    display: block;
}

.single-cta-style5-box .inner-title h3 {
    font-size: 21px;
    line-height: 24px;
}

.single-cta-style5-box .inner-title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-cta-style5-box .inner-title h3 a:hover {
    color: var(--thm-base);
}



/*----------------------------------------
      Cta Style3 Area
    ---------------------------------------*/
.cta-style3-area {
    position: relative;
    display: block;
    z-index: 10;
}

.cta-style3-area__bg-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background-color: var(--thm-black);
    z-index: -1;
}

.cta-style3-area__bg-right {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    float: right;
    background-color: var(--thm-base);
    z-index: -1;
}

.cta-style3-area .row {
    --bs-gutter-x: 0px;
}



.single-cta-style3-box {
    position: relative;
    display: block;
    padding: 41px 0px 42px;
}

.single-cta-style3-box--style2 {
    padding-left: 80px;
}

.single-cta-style3-box__inner {
    position: relative;
    display: block;
    padding-left: 110px;
}

.single-cta-style3-box .icon {
    position: absolute;
    top: 7px;
    left: 0;
}

.single-cta-style3-box .icon.style2 {}

.single-cta-style3-box .icon span {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 80px;
}

.single-cta-style3-box .icon.style2 span {
    font-size: 75px;
    line-height: 75px;
}

.single-cta-style3-box .text {
    position: relative;
    display: block;
}

.single-cta-style3-box .text h3 {
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 7px;
}

.single-cta-style3-box .text p {
    color: #ffffff;
    margin: 0;
}



/*** 
  =============================================
    Cta Style1 Area Css
  =============================================
  ***/
.cta-style1-area {
    position: relative;
    display: block;
    background-color: transparent;
    z-index: 10;
}

.cta-style1-area:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-color: #f0f4fb;
    z-index: -1;
}

.cta-style1-area:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 50%;
    background-color: #1f1e3b;
    z-index: -1;
}


.cta-style1-area__inner {
    position: relative;
    display: block;
    background-color: var(--thm-base);
    border-radius: 8px;
    padding: 55px 0px 54px;
    padding-left: 70px;
}

.cta-style1-area__inner-img-bg {
    position: absolute;
    top: 0px;
    right: -420px;
    width: calc(70% + 0px);
    height: calc(100% + 0px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 23% 0%);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.cta-style1-area__inner-content {
    position: relative;
    display: block;
    z-index: 2;
}

.cta-style1-area__inner-content h2 {
    color: #fff;
    font-size: 42px;
    line-height: 50px;
    font-weight: 900;
    margin-bottom: 12px;
}

.cta-style1-area__inner-content h3 {
    color: #fff;
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
}

.cta-style1-area__inner-content h3 a {
    display: inline-block;
    color: #fff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.cta-style1-area__inner-content h3 a+a {
    margin-left: 50px;
}

.cta-style1-area__inner-content h3 a:hover {
    color: var(--thm-black);
}



.cta-style1-area--style2 {
    position: relative;
}

.cta-style1-area--style2:before {
    background-color: #ffffff;
}

.cta-style1-area--style2:after {
    background-color: #062648;
}




/*------------------------------------------
    cta style4 Area Css
  -------------------------------------------*/
.cta-style4-area {
    position: relative;
    display: block;
    background-image: -moz-linear-gradient(90deg, rgb(254, 171, 38) 0%, rgb(254, 187, 51) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(254, 171, 38) 0%, rgb(254, 187, 51) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(254, 171, 38) 0%, rgb(254, 187, 51) 100%);
    z-index: 10;
}

.cta-style4-area__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: repeat-x;
    background-size: contain;
    z-index: -1;
}

.single-cta-style4-box {
    position: relative;
    display: block;
    padding: 24px 0px 25px;
    padding-right: 92px;
}

.single-cta-style4-box__inner {
    position: relative;
    display: block;
    padding-left: 80px;
}

.single-cta-style4-box__inner .icon {
    position: absolute;
    top: 17px;
    left: 0;
}

.single-cta-style4-box__inner .icon span {
    position: relative;
    display: inline-block;
    color: #333230;
    font-size: 50px;
}

.single-cta-style4-box__inner .text {
    position: relative;
    display: block;
}

.single-cta-style4-box__inner .text h3 {
    color: #000000;
    font-size: 22px;
    line-height: 32px;
    margin: 0 0 4px;
}

.single-cta-style4-box__inner .text p {
    color: #000000;
    font-size: 18px;
    line-height: 24px;
    font-family: var(--thm-font);
}

.single-cta-style4-box__inner .text p a {
    position: relative;
    display: inline-block;
    color: #000000;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-cta-style4-box__inner .text p a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 2px;
    right: 0;
    height: 1px;
    background-color: #000000;
}

.single-cta-style4-box__inner .text p a:hover {
    color: var(--thm-base);
}



/*------------------------------------------
    welcome style1 Css
  --------------------------------------------*/
.welcome-style1 {
    position: relative;
    display: block;
    background-color: var(--thm-main-bg);
    padding: 120px 0 120px;
    z-index: 10;
}

.welcome-style1__content {
    position: relative;
    display: block;
}

.welcome-style1__content .sec-title {
    padding-bottom: 39px;
}

.welcome-style1__content .sec-title h2 {
    color: #ffffff;
}

.welcome-style1__content .text {
    position: relative;
    display: block;
    padding-bottom: 30px;
}

.welcome-style1__content .text p {
    color: #a9c2d0;
    font-size: 20px;
    line-height: 32px;
}

.welcome-style1__content--bottom {
    position: relative;
    display: flex;
    align-items: center;
}

.welcome-style1__content--bottom .signature-box {
    position: relative;
    display: block;
    margin-right: 120px;
}

.awards-img-box {
    position: relative;
    display: block;
}

.awards-img-box ul {
    position: relative;
    display: flex;
    align-items: center;
}

.awards-img-box ul li {
    position: relative;
    display: block;
}

.awards-img-box ul li+li {
    margin-left: 20px;
}

.awards-img-box ul li a {
    position: relative;
    display: inline-block;
}


.awards-img-box ul li a img {
    filter: drop-shadow(2px 0 0 var(--thm-base)) drop-shadow(-2px 0 var(--thm-base)) drop-shadow(0 2px 0 var(--thm-base)) drop-shadow(0 -2px 0 var(--thm-base)) drop-shadow(2px 2px 0 var(--thm-base)) drop-shadow(2px -2px 0 var(--thm-base)) drop-shadow(-2px 2px 0 var(--thm-base)) drop-shadow(-2px -2px 0 var(--thm-base));
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.awards-img-box ul li:hover a img {
    filter: drop-shadow(2px 0 0 var(--thm-white)) drop-shadow(-2px 0 var(--thm-white)) drop-shadow(0 2px 0 var(--thm-white)) drop-shadow(0 -2px 0 var(--thm-white)) drop-shadow(2px 2px 0 var(--thm-white)) drop-shadow(2px -2px 0 var(--thm-white)) drop-shadow(-2px 2px 0 var(--thm-white)) drop-shadow(-2px -2px 0 var(--thm-white));
}


.welcome-style1__img {
    position: relative;
    display: block;
    padding-top: 120px;
    margin-left: 60px;
    margin-right: -90px;
    max-width: 400px;
}

.welcome-style1__img .inner {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.welcome-style1__img .inner img {
    width: auto;
}

.welcome-style1__img .inner .shape1 {
    position: absolute;
    top: -160px;
    left: -140px;
    bottom: -68px;
    right: -136px;
    z-index: -1;
}

.welcome-style1__img .inner .shape1 img {
    opacity: 0.70;
}

.welcome-style1__img .shape2 {
    position: absolute;
    top: 25px;
    left: 20px;
    z-index: -2;
}

.welcome-style1__img .shape2 img {
    opacity: 0.05;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.welcome-style1__img:hover .shape2 img {
    opacity: 0.10;
    transform: rotate(1deg);
}

.welcome-style1__img .shape3 {
    position: absolute;
    top: 10px;
    right: 0px;
    z-index: 2;
}



/*------------------------------------------
    welcome style2 Css
  --------------------------------------------*/
.welcome-style2 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 113px;
    z-index: 10;
}

.welcome-style2 .sec-title {
    padding-bottom: 56px;
}

.welcome-style2 .sec-title .sub-title {
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
}

.welcome-style2 .sec-title .sub-title h5 {
    margin-left: 10px;
    margin-right: 10px;
}

.welcome-style2 .sec-title p {
    color: #242424;
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
    margin-top: 33px;
    padding: 0 70px;
}

.single-service-style1.single-service-style1--style2 {
    background-color: #f0f8fa;
}


.welcome-style2__more-services {
    position: relative;
    display: block;
    padding-top: 51px;
    text-align: center;
}

.welcome-style2__more-services p {
    color: #242424;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.welcome-style2__more-services p a {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
}

.welcome-style2__more-services p a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    right: 0;
    height: 1px;
    background-color: var(--thm-base);
}



/*------------------------------------------
    Welcome Style3
  --------------------------------------------*/
.welcome-style3 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0px 120px;
    z-index: 10;
}

.welcome-style3__img {
    position: relative;
    display: block;
    margin-left: -70px;
}

.welcome-style3__img ul {
    position: relative;
    display: flex;
    margin-left: -5px;
    margin-right: -5px;
    align-items: flex-end;
    justify-content: flex-end;
}

.welcome-style3__img ul li {
    position: relative;
    display: block;
    float: left;
    padding: 0 5px 0;
}

.welcome-style3__img ul li:first-child .single-img-box {
    width: 310px;
}

.welcome-style3__img ul li:last-child .single-img-box {
    width: 220px;
}

.welcome-style3__img ul li .single-img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.welcome-style3__img ul li .single-img-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: #000000;
    z-index: 1;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.welcome-style3__img ul li:hover .single-img-box::before {
    opacity: 0.3;
}

.welcome-style3__img ul li .single-img-box img {
    width: 100%;
}

.welcome-style3__img ul li:hover .single-img-box img {
    transform: scale(1.05) rotate(0deg);
}


.welcome-style3__content {
    position: relative;
    display: block;
    margin-left: 40px;
}

.welcome-style3__content .sec-title {
    padding-bottom: 30px;
}

.welcome-style3__content .text1 {
    position: relative;
    display: block;
    margin-bottom: 29px;
}

.welcome-style3__content .text1 p {
    margin: 0;
}

.welcome-style3__content .text2 {
    position: relative;
    display: block;
}

.welcome-style3__content .text2 p {
    margin: 0;
}

.welcome-style3__content ul {
    position: relative;
    display: block;
    margin-top: 44px;
}

.welcome-style3__content ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font);
    font-weight: 600;
    margin-bottom: 9px;
}

.welcome-style3__content ul li:last-child {
    margin-bottom: 0;
}

.welcome-style3__content ul li .icon {
    position: absolute;
    top: 6px;
    left: 0;
    line-height: 0;
}

.welcome-style3__content ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
}




/*------------------------------------------
    Welcome Style4
  --------------------------------------------*/
.welcome-style4 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0px 113px;
    z-index: 10;
}


.welcome-style4__img {
    position: relative;
    display: block;
    max-width: 570px;
    margin-left: -100px;
}

.welcome-style4__img-top {
    position: absolute;
    top: 0;
    right: 180px;
    z-index: 2;
}

.welcome-style4__img ul {
    position: relative;
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
}

.welcome-style4__img ul li {
    position: relative;
    display: block;
    float: left;
    padding: 0 10px 0;
}

.welcome-style4__img ul li:first-child {
    padding-top: 175px;
}

.welcome-style4__img ul li:first-child .single-img-box {
    width: 305px;
}

.welcome-style4__img ul li:last-child .single-img-box {
    width: 240px;
}

.welcome-style4__img ul li .single-img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.welcome-style4__img ul li .single-img-box img {
    width: 100%;
}

.welcome-style4__img ul li:hover .single-img-box img {
    transform: scale(1.02) rotate(0deg);
}


.certified-service-box {
    position: relative;
    display: block;
    background-color: #f1f7fd;
    margin-top: 20px;
    text-align: center;
    padding: 39px 0 32px;
}

.certified-service-box h5 {
    color: var(--thm-primary);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.certified-service-box h2 {
    color: #242424;
    font-size: 30px;
    line-height: 36px;
    font-weight: 900;
    font-family: var(--thm-font-3);
    margin: 8px 0 0;
}



.welcome-style3__content--style2 .sec-title {
    padding-bottom: 40px;
}

.welcome-style3__content--style2 ul {
    margin-top: 41px;
}

.welcome-style3__content--style2 .btn-box {
    position: relative;
    padding-top: 56px;
}



/*** 
  =============================================
      Welcome Style6 Css    
  =============================================
  ***/
.welcome-style6 {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 10;
}

.welcome-style6__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-color: #a33030;
    background-blend-mode: color-burn;
    z-index: -1;
}

.welcome-style6__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #a33030;
    opacity: 0.90;
}



.welcome-style6__img-box {
    position: relative;
    display: block;
    margin-right: -15px;
}

.welcome-style6__img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 11px;
}

.welcome-style6__img-box .inner::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: #000000;
    z-index: 2;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.welcome-style6__img-box:hover .inner::before {
    opacity: 0.30;
}

.welcome-style6__img-box .inner img {
    width: 100%;
}

.welcome-style6__img-box:hover .inner img {
    transform: scale(1.05) rotate(1deg);
}




.welcome-style6__content-box {
    position: relative;
    display: block;
    padding-left: 75px;
}

.welcome-style6__content-box .sec-title {
    padding-bottom: 20px;
}

.welcome-style6__content-box .sec-title h2 {
    color: #ffffff;
}

.welcome-style6__content-box .sec-title .sub-title .border-left {
    background-color: #ffffff;
}

.welcome-style6__content-box .sec-title .sub-title h5 {
    color: #ffffff;
}

.welcome-style6__content-box .text-box {
    position: relative;
    display: block;
}

.welcome-style6__content-box .text-box p {
    color: #ffffff;
}



.welcome-style6__content-box .list-item {
    position: relative;
    display: block;
    padding-top: 27px;
    max-width: 630px;
}

.welcome-style6__content-box .list-item ul {
    position: relative;
    display: block;
}

.welcome-style6__content-box .list-item ul li {
    position: relative;
    display: block;
    padding-left: 40px;
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--thm-font-3);
    font-weight: 500;
}

.welcome-style6__content-box .list-item ul li+li {
    margin-top: 4px;
}

.welcome-style6__content-box .list-item ul li .icon {
    position: absolute;
    top: 4px;
    left: 0;
    line-height: 0;
}

.welcome-style6__content-box .list-item ul li .icon span {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
}


.welcome-style6__content-box .customer-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.welcome-style6__content-box .customer-info .inner {
    position: relative;
    display: flex;
    align-items: center;
}


.welcome-style6__content-box .customer-info .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.welcome-style6__content-box .customer-info .title-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
}

.welcome-style6__content-box .customer-info .title-box h3 {
    font-size: 20px;
    line-height: 28px;
    font-family: var(--thm-font);
    font-weight: 600;
}

.welcome-style6__content-box .customer-info .title-box h3 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.welcome-style6__content-box .customer-info .title-box h3 a:hover {
    color: var(--thm-black);
}

.welcome-style6__content-box .customer-info .title-box h3 span {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.welcome-style6__content-box .customer-info .outer {
    position: relative;
    display: block;
    margin-left: 40px;
}



/*------------------------------------------
    Service style1
  --------------------------------------------*/
.service-style1 {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    background: var(--thm-gray-bg);
    z-index: 10;
}

.service-style1__top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 49px;
}

.service-style1__top .sec-title {
    padding-bottom: 0;
}

.service-style1__top .sec-title h2 {}

.service-style1__top .text-box {
    position: relative;
    display: block;
    top: -4px;
    max-width: 500px;
    width: 100%;
}

.service-style1__top .text-box p {
    color: #494949;
}



.single-service-style1 {
    position: relative;
    display: block;
    text-align: center;
    border-radius: 8px;
    background-color: #ffffff;
    padding: 50px 35px 40px;
    border-bottom: 4px solid #d90429;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-service-style1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: -4px;
    right: 0;
    border-bottom: 4px solid var(--thm-black);
    border-radius: 8px;
    background-color: var(--thm-primary);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.single-service-style1:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.single-service-style1 .icon {
    position: relative;
    display: block;
    line-height: 0;
}

.single-service-style1 .icon span {
    position: relative;
    display: inline-block;
    color: #0b67b4;
    font-size: 64px;
    line-height: 64px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .icon span {
    color: #ffffff;
}


.single-service-style1 .text {
    position: relative;
    display: block;
    margin-top: 25px;
}

.single-service-style1 .text h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 7px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1 .text h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .text h3 a {
    color: #ffffff;
}

.single-service-style1 .text p {
    color: #494949;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .text p {
    color: #ffffff;
}

.single-service-style1 .text .btn-box {
    position: relative;
    display: inline-block;
    margin-top: 22px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .text .btn-box a {
    color: var(--thm-black);
}



.service-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: relative;
    display: flex;
    width: 290px;
    justify-content: space-between;
    margin: 50px auto 0;
    align-items: center;
}

.service-style1-carousel.owl-nav-style-one.owl-theme .owl-nav:before {
    content: "";
    position: relative;
    width: 70px;
    height: 1px;
    background: #aeb2b7;
}

.service-style1-carousel.owl-nav-style-one.owl-theme .owl-nav:after {
    content: "";
    position: relative;
    width: 70px;
    height: 1px;
    background: #aeb2b7;
}



/*------------------------------------------
    Service style2
  --------------------------------------------*/
.service-style2 {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    background: #090d30;
    z-index: 10;
}

.service-style2:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 350px;
    background-color: #ffffff;
    z-index: -1;
}

.service-style2 .sec-title {
    padding-bottom: 56px;
}

.service-style2 .sec-title .sub-title {
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
}

.service-style2 .sec-title .sub-title h5 {
    margin-left: 10px;
    margin-right: 10px;
}

.service-style2 .sec-title h2 {
    color: #ffffff;
}

.service-style2 .container {
    max-width: 1300px;
}

.single-service-style2 {
    position: relative;
    display: block;
}

.single-service-style2 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #000000;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.single-service-style2 .img-box img {
    width: 100%;
    transform: scale(1.0);
}

.single-service-style2:hover .img-box img {
    transform: scale(1.05) rotate(0deg);
    opacity: 0.50;
}

.single-service-style2__overlay-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 130px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: 0.60;
    z-index: 1;
}

.single-service-style2 .text {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 33px 30px 40px;
    text-align: center;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.single-service-style2 .text h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin: 0 0 7px;
}

.single-service-style2 .text h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style2 .text h3 a:hover {
    color: var(--thm-base);

}

.single-service-style2 .text p {
    margin-bottom: 23px;
}

.single-service-style2 .text .border-box {
    position: relative;
    display: block;
    width: 35px;
    height: 3px;
    background-color: var(--thm-base);
    margin: 0 auto;
}


.service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: relative;
    display: block;
    width: 290px;
    margin: 50px auto 0;
}

.service-style2-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.service-style2-carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.service-style2-carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}



/*** 
  =============================================
      choose Style1 Css
  =============================================
  ***/
.choose-style1 {
    position: relative;
    display: block;
    background-color: #08335e;
    z-index: 10;
}

.choose-style1__shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: -1;
}

.choose-style1__shape-1 img {
    opacity: 0.05;
}

.choose-style1__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-color: #08335e;
    background-blend-mode: color-burn;
    opacity: 0.10;
    z-index: -2;
}

.choose-style1__img-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    background-color: var(--thm-base);
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    width: calc((100% - -122px) / 3);
    z-index: 1;
}

.choose-style1__img-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.20;
    z-index: -1;
}

.happy-customers-box-style1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 190px;
    background-color: var(--thm-base);
    text-align: center;
    padding: 36px 0 32px;
    z-index: 1;
}

.happy-customers-box-style1 .icon {
    position: relative;
    display: block;
    padding-bottom: 18px;
}

.happy-customers-box-style1 .icon span {
    color: #ffffff;
    font-size: 62px;
    line-height: 62px;
}

.happy-customers-box-style1 h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
}



.choose-style1__inner {
    position: relative;
    display: block;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 0 116px;
}

.choose-style1__content {
    position: relative;
    display: block;
    max-width: 862px;
    width: 100%;
    float: right;
    padding-left: 100px;
}

.choose-style1__content .sec-title {
    padding-bottom: 30px;
}

.choose-style1__content .sec-title h2 {
    color: #ffffff;
}

.choose-style1__content .text {
    position: relative;
    display: block;
}

.choose-style1__content .text p {
    color: #ffffff;
}


.choose-style1__content-bottom {
    position: relative;
    display: block;
    padding-top: 38px;
}

.choose-style1__content-bottom ul {
    position: relative;
    display: block;
}

.choose-style1__content-bottom ul li {
    position: relative;
    display: block;
    padding-left: 40px;
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--thm-font);
    font-weight: 600;
    margin-bottom: 15px;
}

.choose-style1__content-bottom ul li:last-child {
    margin-bottom: 0;
}

.choose-style1__content-bottom ul li .icon {
    position: absolute;
    top: 3px;
    left: 1px;
    line-height: 0;
}

.choose-style1__content-bottom ul li .icon span {
    position: relative;
    display: inline-block;
    font-size: 22px;
    line-height: 24px;
    background: repeating-linear-gradient(to top, #00B1E6 0%, #00e8d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/*** 
  =============================================
      Our Values Style1 Css
  =============================================
  ***/
.our-values-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.our-values-style1__img {
    position: relative;
    display: block;
    margin-right: 35px;
}

.our-values-style1__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.our-values-style1__img .inner::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0;
    z-index: 1;
    transition: all 1500ms ease;
}

.our-values-style1__img:hover .inner::after {
    opacity: 0.50;
}

.our-values-style1__img .inner img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.our-values-style1__img:hover .inner img {
    transform: scale(1.05) rotate(0deg);
}




.our-values-style1__content {
    position: relative;
    display: block;
}

.our-values-style1__content .sec-title {
    padding-bottom: 19px;
}

.our-values-style1__content .text {
    position: relative;
    display: block;
}

.our-values-style1__content .text p {
    font-size: 20px;
    line-height: 32px;
}

.our-values-style1__content .text p u {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.our-values-style1__content .text p u::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 3px;
    right: 0px;
    height: 1px;
    background-color: #7e7e7e;
}



.our-values-style1__content-features {
    position: relative;
    display: block;
    margin-top: 39px;
}

.our-values-style1__content-features ul {
    position: relative;
    display: block;
}

.our-values-style1__content-features ul li {
    position: relative;
    display: block;
    padding-left: 90px;
    margin-bottom: 39px;
}

.our-values-style1__content-features ul li:last-child {
    margin: 0;
}

.our-values-style1__content-features ul li .icon {
    position: absolute;
    top: 4px;
    left: 0;
    line-height: 0;
}

.our-values-style1__content-features ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
    line-height: 60px;
}

.our-values-style1__content-features ul li .text {
    position: relative;
    display: block;
}

.our-values-style1__content-features ul li .text h3 {
    font-size: 22px;
    line-height: 26px;
    padding-bottom: 4px;
}

.our-values-style1__content-features ul li .text p {
    margin: 0;
}



/*** 
  =============================================
      values Style3 Css     
  =============================================
  ***/
.values-style3 {
    position: relative;
    display: block;
    padding: 120px 0 71px;
    z-index: 10;
}

.values-style3-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.values-style3__content {
    position: relative;
    display: block;
    padding-right: 40px;
}

.values-style3__content .sec-title {
    padding-bottom: 20px;
}

.values-style3__content .sec-title h2 {
    color: #ffffff;
}

.values-style3__content .text {
    position: relative;
    display: block;
    margin-bottom: 26px;
}

.values-style3__content .text p {
    color: #ffffff;
}


.values-style3__content-list-item {
    position: relative;
    display: block;
}

.values-style3__content-list-item h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 32px;
}

.values-style3__content-list-item ul {
    position: relative;
    display: block;
    padding-top: 13px;
}

.values-style3__content-list-item ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    color: #ffffff;
    font-size: 19px;
    line-height: 29px;
    font-family: var(--thm-font);
    font-weight: 500;
}

.values-style3__content-list-item ul li+li {
    margin-top: 5px;
}

.values-style3__content-list-item ul li .icon {
    position: absolute;
    top: 6px;
    left: 0;
    line-height: 0;
}

.values-style3__content-list-item ul li .icon span {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 17px;
    line-height: 17px;
    font-weight: 100;
}



.ACREX-form-style1--instyle2 {
    position: relative;
    display: block;
    max-width: 370px;
    padding: 43px 30px 40px;
}

.ACREX-form-style1--instyle2 .top-title {
    padding: 0 0 31px;
}

.ACREX-form-style1--instyle2 .top-title h3 {
    color: #ffffff;
    font-size: 25px;
    line-height: 35px;
    font-weight: 500;
}

.ACREX-form-style1--instyle2 form .form-group {
    padding-bottom: 15px;
}

.ACREX-form-style1--instyle2 form textarea {
    height: 120px;
}

.ACREX-form-style1--instyle2 form .button-box {
    position: relative;
    display: block;
    padding-top: 0px;
}

.ACREX-form-style1--instyle2 form .button-box button {
    width: auto;
    padding: 0 40px;
}



.ACREX-form-style1--instyle3 {
    background-color: #022548;
}

.ACREX-form-style1--instyle3 .top-title {
    text-align: left;
}

.ACREX-form-style1--instyle3 form .button-box button:after {
    background-color: var(--thm-base);
}














/*** 
  =============================================
      Slogan Area Css
  =============================================
  ***/
.slogan-area {
    position: relative;
    display: block;
    padding: 116px 0 120px;
    z-index: 10;
}

.slogan-area-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
}

.slogan-area-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1120px;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
}

.slogan-area-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    opacity: 0.40;
}

.slogan-content-box {
    position: relative;
    display: block;
}

.slogan-content-box .inner-title {
    position: relative;
    display: block;
}

.slogan-content-box .inner-title h5 {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.slogan-content-box .inner-title h2 {
    color: #ffffff;
    font-size: 65px;
    line-height: 1.1em;
    font-weight: 900;
    margin: 22px 0 0;
    font-family: var(--thm-font-3);
}

.slogan-content-box .btns-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 43px;
}



.video-gallery-style1 {
    position: relative;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.video-gallery-style1 .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.video-gallery-style1 .icon .border-round {
    position: absolute;
    top: -7px;
    left: -7px;
    bottom: -7px;
    right: -7px;
    border: 1px solid #ffffff;
    border-radius: 50%;
}

.video-gallery-style1 .icon:hover {
    background-color: var(--thm-base);
}

.video-gallery-style1 .icon:after,
.video-gallery-style1 .icon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.video-gallery-style1 .icon:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-gallery-style1 .icon .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.video-gallery-style1 .icon .video-popup span::before {
    position: relative;
    color: var(--thm-base);
    font-size: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.video-gallery-style1 .icon:hover .video-popup span::before {
    color: #ffffff;
}


.video-gallery-style1 .title {
    position: relative;
    display: block;
    margin-left: 25px;
}

.video-gallery-style1 .title h5 {
    color: #ffffff;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--thm-font-3);
}



/*** 
  =============================================
    Slogan Style2 Area Css
  =============================================
  ***/
.slogan-style2-area {
    position: relative;
    display: block;
    margin-top: -100px;
    margin-bottom: -100px;
    z-index: 11;
}

.slogan-style2__content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: #ffffff;
    padding: 52px 60px 53px;
    padding-right: 0;
    margin-right: -100px;
}

.slogan-style2__content:before {
    content: "";
    position: absolute;
    top: 0;
    right: -5000px;
    bottom: 0;
    width: 5000px;
    background-color: #ffffff;
}

.slogan-style2-title-box {
    position: relative;
    display: block;
    padding-left: 100px;
}

.slogan-style2-title-box .icon {
    position: absolute;
    top: 12px;
    left: 0;
    color: var(--thm-base);
    font-size: 60px;
}

.slogan-style2-title-box .title {
    position: relative;
    display: block;
}

.slogan-style2-title-box .title h2 {
    font-size: 40px;
    line-height: 50px;
    margin: 0 0 11px;
}

.slogan-style2-title-box .title p {
    color: var(--thm-black);
    font-size: 20px;
}


.slogan-style2-phone-number {
    position: relative;
    display: flex;
    align-items: center;
}

.slogan-style2-phone-number .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95px;
    height: 95px;
    border: 2px dashed var(--thm-base);
    border-radius: 50%;
    color: var(--thm-base);
    font-size: 50px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.slogan-style2-phone-number .text {
    position: relative;
    flex: 1;
    margin-left: 30px;
}

.slogan-style2-phone-number .text h2 {
    position: relative;
    top: -4px;
    font-size: 40px;
    line-height: 46px;
    margin: 0 0 8px;
}

.slogan-style2-phone-number .text h2 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.slogan-style2-phone-number .text h2 a:hover {
    color: var(--thm-base);
}

.slogan-style2-phone-number .text p {
    font-size: 20px;
    line-height: 20px;
}

.slogan-style2-phone-number:hover .icon {
    color: #ffffff;
    background-color: var(--thm-base);
    border-color: var(--thm-base);
    animation: pulse10 3000ms infinite;
}



/*------------------------------------------
    Team Style1 Area
  --------------------------------------------*/
.team-style1-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 90px;
    z-index: 10;
}

.team-style1-area__top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 49px;
}

.team-style1-area__top .sec-title {
    padding-bottom: 0;
}

.team-style1-area__top .text-box {
    position: relative;
    top: -4px;
    display: block;
    max-width: 600px;
    width: 100%;
}

.team-style1-area__top .text-box p {
    color: #494949;
    font-size: 18px;
    line-height: 28px;
}

.team-style1-area .container {
    max-width: 1220px;
}

.team-style1-area .row {
    --bs-gutter-x: 10px;
}


.single-team-style1 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-team-style1 .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    padding-right: 20px;
}

.single-team-style1 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    background-color: #000000;
}

.single-team-style1 .img-holder .inner img {
    width: 100%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1:hover .img-holder .inner img {
    opacity: 0.70;
    transform: scale(1.05);
    transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.single-team-style1 .title-box {
    position: absolute;
    left: 20px;
    bottom: 0;
    right: 0;
    background-color: var(--thm-base);
    border-radius: 5px;
    border-bottom-left-radius: 0;
    padding: 16px 30px 12px;
    transform: perspective(0px) rotateX(0deg) translateY(0%);
    z-index: 2;
}

.single-team-style1:hover .title-box {
    opacity: 1;
    transform: perspective(0px) rotateX(0deg) translateY(70px);
    transition: all .4s ease-in-out .1s;
}

.single-team-style1 .title-box .title-box__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.single-team-style1 .title-box h3 {
    font-size: 21px;
    line-height: 24px;
    margin-bottom: 4px;
}

.single-team-style1 .title-box h3 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1 .title-box h3 a:hover {
    color: var(--thm-black);
}

.single-team-style1 .title-box h5 {
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.single-team-style1 .title-box .right {
    position: relative;
    display: block;
    line-height: 0;
}

.single-team-style1 .title-box .right a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 28px;
    line-height: 28px;
}


.single-team-style1 .overlay-content {
    position: absolute;
    left: 20px;
    bottom: 0;
    right: 0;
    background-color: var(--thm-base);
    border-radius: 5px;
    border-bottom-left-radius: 0;
    padding: 36px 30px 40px;
    opacity: 1;
    transform: perspective(400px) rotateX(0deg) translateY(116px);
    z-index: 1;
}

.single-team-style1:hover .overlay-content {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg) translateY(0%);
    transition: all .4s ease-in-out .1s;
}

.single-team-style1 .overlay-content .title-box__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.single-team-style1 .overlay-content .title-box__inner h3 {
    font-size: 21px;
    line-height: 24px;
    margin-bottom: 3px;
}

.single-team-style1 .overlay-content .title-box__inner h3 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1 .overlay-content .title-box__inner h3 a:hover {
    color: var(--thm-black);
}

.single-team-style1 .overlay-content .title-box__inner h5 {
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.single-team-style1 .overlay-content .title-box__inner .right {
    position: relative;
    display: block;
    line-height: 0;
}

.single-team-style1 .overlay-content .title-box__inner .right a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 28px;
    line-height: 28px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1 .overlay-content .title-box__inner .right a:hover {
    color: var(--thm-black);
}



.team-social-link {
    position: relative;
    display: block;
    padding-top: 22px;
}

.team-social-link ul {
    position: relative;
    display: block;
}

.team-social-link ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.team-social-link ul li:last-child {
    margin-right: 0;
}

.team-social-link ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 2px solid #ffffff;
    background: transparent;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.team-social-link ul li a:before {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    background: #ffffff;
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.team-social-link ul li:hover a:before {
    opacity: 1.0;
    transform: scale(1.0);
}

.team-social-link ul li:hover a {
    color: var(--thm-base);
    border-color: #ffffff;
}



/*** 
  =============================================
     Project Style1 Area Css
  =============================================
  ***/
.project-style1-area {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    background-color: #f0f4fb;
    z-index: 10;
}

.project-style1-area .auto-container {
    max-width: 1600px;
    padding: 0 15px;
}

.project-style1-area__top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 49px;
}

.project-style1-area__top .sec-title {
    padding-bottom: 0;
}



.single-project-item {
    position: relative;
    display: block;
}

.single-project-item .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.single-project-item .img-holder img {
    width: 100%;
    transform: scale(1.0);
}

.single-project-item:hover .img-holder img {
    transform: scale(1.05) rotate(1deg);
}

.single-project-item .img-holder-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #091836;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    border-radius: 6px;
    z-index: 1;
}

.single-project-item:hover .img-holder-img-bg {
    opacity: 0.90;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}



.single-project-item .img-holder .overlay-button {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(20deg) translateX(100%);
    -ms-transform: perspective(400px) rotateX(20deg) translateX(100%);
    transform: perspective(400px) rotateX(20deg) translateX(100%);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    z-index: 2;
}

.single-project-item:hover .img-holder .overlay-button {
    opacity: 1.0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateX(0%);
    -ms-transform: perspective(400px) rotateX(0deg) translateX(0%);
    transform: perspective(400px) rotateX(0deg) translateX(-0%);
    transition-delay: .3s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.single-project-item .img-holder .overlay-button a {
    position: relative;
    display: block;
    background-color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    color: #000000;
    font-size: 25px;
    line-height: 60px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-project-item .img-holder .overlay-button a+a {
    margin-top: 10px;
}

.single-project-item .img-holder .overlay-button a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: 5px;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    background-color: rgba(var(--thm-base-rgb), .99);
    z-index: -1;
}

.single-project-item .img-holder .overlay-button a:hover::before {
    transform: scaleX(1.0);
}

.single-project-item .img-holder .overlay-button a:hover {
    color: #ffffff;
}



.single-project-item .img-holder .overlay-title {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0 50px 42px;
    padding-right: 20px;
    transform: scaleY(0);
    transition: all 300ms ease 100ms;
    z-index: 2;
}

.single-project-item:hover .img-holder .overlay-title {
    transform: scaleY(1.0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-item .img-holder .overlay-title p {
    color: var(--thm-base);
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
}

.single-project-item .img-holder .overlay-title h4 {
    font-size: 22px;
    line-height: 30px;
    margin: 6px 0 0;
}

.single-project-item .img-holder .overlay-title h4 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.project-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: -110px;
    left: 0;
    right: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: right;
}



/*** 
  =============================================
    Additional Services Style1 Area Css
  =============================================
  ***/
.additional-services-style1 {
    position: relative;
    display: block;
    background-color: #f4f5fa;
    padding: 120px 0 120px;
    z-index: 10;
}

.additional-services-style1.pdb {
    padding-bottom: 220px;
}

.additional-services-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: -1;
}

.additional-services-style1__content {
    position: relative;
    display: block;
}

.additional-services-style1__content .sec-title {
    padding-bottom: 20px;
}

.additional-services-style1__content .text-top {
    position: relative;
    display: block;
    margin-bottom: 29px;
}

.additional-services-style1__content .text-top p {
    margin: 0;
}

.additional-services-style1__content .text-bottom {
    position: relative;
    display: block;
}

.additional-services-style1__content .text-bottom p {
    margin: 0;
}



.additional-services-style1__content-bottom {
    position: relative;
    display: block;
    margin-top: 32px;
}

.additional-services-style1__content-bottom ul {
    position: relative;
    display: block;
}

.additional-services-style1__content-bottom ul li {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 19px;
    line-height: 36px;
    font-family: var(--thm-font);
    font-weight: 500;
    padding-left: 30px;
}

.additional-services-style1__content-bottom ul li .icon {
    position: absolute;
    top: 10px;
    left: 0;
    line-height: 0;
}

.additional-services-style1__content-bottom ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 16px;
    line-height: 16px;
}


.additional-services-style1__img {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
}

.additional-services-style1__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.additional-services-style1__img .inner img {
    width: 100%;
}

.additional-services-style1__img .inner .round-box1 {
    position: absolute;
    bottom: -128px;
    right: -203px;
    width: 350px;
    height: 350px;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.additional-services-style1__img .inner .round-box2 {
    position: absolute;
    bottom: -92px;
    right: -79px;
    width: 222px;
    height: 222px;
    border-radius: 50%;
    background-color: var(--thm-base);
}



/*------------------------------------------
    Additional Services Style2
  --------------------------------------------*/
.additional-services-style2 {
    position: relative;
    display: block;
    background-color: #eceef2;
    padding: 120px 0 80px;
    z-index: 10;
}

.additional-services-style2 .sec-title {
    padding-bottom: 53px;
}

.additional-services-style2 .sec-title h2 {
    margin-bottom: 20px;
}


.single-additional-services-style2 {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.single-additional-services-style2 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-additional-services-style2 .img-box img {
    width: 100%;
    transform: scale(1.0)
}

.single-additional-services-style2:hover .img-box img {
    transform: scale(1.10) rotate(0deg);
}

.single-additional-services-style2 .img-box::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 0%;
    left: 0px;
    top: 0px;
    background-color: var(--thm-base);
    opacity: 0.50;
    transition: all 500ms ease;
    z-index: 1;
}

.single-additional-services-style2:hover .img-box::before {
    height: 100%;
    opacity: 0.50;
}

.single-additional-services-style2 .content-box {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 22px 0px 18px;
}

.single-additional-services-style2 .content-box h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 1px;
}

.single-additional-services-style2 .content-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-additional-services-style2 .content-box h3 a:hover {
    color: var(--thm-base);
}

.single-additional-services-style2 .content-box h2 {
    font-size: 35px;
    line-height: 45px;
    font-family: var(--thm-font);
    font-weight: 600;
}

.single-additional-services-style2 .content-box h2 span {
    position: relative;
    display: inline-block;
    font-size: 28px;
    font-weight: 600;
}



/*------------------------------------------
    Additional Services Style3
  --------------------------------------------*/
.additional-services-style3 {
    position: relative;
    display: block;
    background-color: #f0f0f0;
    padding: 120px 0 80px;
    overflow: hidden;
    z-index: 10;
}

.additional-services-style3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #f0f0f0;
    opacity: 0.85;
    z-index: -1;
}

.additional-services-style3__img {
    position: absolute;
    right: 0;
    bottom: -30px;
    z-index: -2;
}

.additional-services-style3 .sec-title {
    padding-bottom: 63px;
}

.additional-services-style3 .sec-title .sub-title {
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
}

.additional-services-style3 .sec-title .sub-title h5 {
    margin-left: 10px;
    margin-right: 10px;
}

.additional-services-style3 .sec-title p {
    margin-top: 15px;
}



.single-additional-services-3 {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.single-additional-services-3 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #000000;
}

.single-additional-services-3 .img-box img {
    width: 100%;
    transform: scale(1.0);
}

.single-additional-services-3:hover .img-box img {
    transform: scale(1.05) rotate(0deg);
    opacity: 0.70;
}


.single-additional-services-3 .content-box {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 25px 29px 27px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.single-additional-services-3 .content-box h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.single-additional-services-3 .content-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-additional-services-3 .content-box h3 a:hover {
    color: var(--thm-base);
}

.single-additional-services-3 .content-box h4 {
    color: #8c8c8c;
    font-size: 17px;
    line-height: 27px;
}

.single-additional-services-3 .content-box h4 span {
    color: var(--thm-base);
    padding-left: 5px;
}



/*** 
  =============================================
      Contact Style1 Area
  =============================================
  ***/
.contact-style1-area {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #eff2f5;
    padding: 120px 0 93px;
    z-index: 10;
}

.contact-style1__content-box {
    position: relative;
    display: block;
    max-width: 500px;
}

.contact-style1__content-box .round-box {
    position: absolute;
    top: -54px;
    left: -60px;
    width: 180px;
    height: 180px;
    border: 40px solid #dfe8f1;
    border-radius: 50%;
}

.contact-style1__content-box .sec-title {
    padding-bottom: 15px;
}

.contact-style1__content-box .sec-title h2 {
    color: #0e2a4e;
}

.contact-style1__content-box--inner {
    position: relative;
    display: block;
}

.contact-style1__content-box--inner p {
    color: #444444;
}

.contact-style1__content-box--inner .phone-number {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 28px;
    margin-bottom: 25px;
}

.contact-style1__content-box--inner .phone-number .img-box {
    position: relative;
    display: block;
    width: 70px;
}

.contact-style1__content-box--inner .phone-number .img-box img {
    border-radius: 50%;
}


.contact-style1__content-box--inner .phone-number .text {
    position: relative;
    flex: 1;
    padding-left: 30px;
}

.contact-style1__content-box--inner .phone-number .text h4 {
    color: #444444;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    font-family: var(--thm-font);
}

.contact-style1__content-box--inner .phone-number .text h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--thm-font);
    margin: 0px 0 0;
}

.contact-style1__content-box--inner .phone-number .text h3 a {
    color: #0b1970;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-style1__content-box--inner .phone-number .text h3 a:hover {
    color: var(--thm-base);
}



.contact-style1__content-box--inner .text-box2 {
    position: relative;
    display: block;
    padding-bottom: 18px;
}

.contact-style1__content-box--inner .text-box2 p {
    font-family: var(--thm-font);
}

.contact-style1__content-box--inner .text-box2 p span {
    font-weight: 600;
}

.contact-style1__content-box--inner .text-box-3 p {
    font-family: var(--thm-font);
}

.contact-style1__content-box--inner .text-box-3 p span {
    font-weight: 600;
}



.thm-form-box-1 {
    position: relative;
    display: block;
}

.thm-form-box-1 .row {
    --bs-gutter-x: 15px;
}

.thm-form-box-1 form {
    position: relative;
    display: block;
}

.thm-form-box-1 form .form-group {
    position: relative;
    display: block;
    padding-bottom: 20px;
}

.thm-form-box-1 form .input-box {
    position: relative;
    display: block;
}

.thm-form-box-1 form input[type="text"],
.thm-form-box-1 form input[type="email"],
.thm-form-box-1 form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #dbdcdd;
    width: 100%;
    height: 62px;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 8px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.thm-form-box-1 form input[type="text"]:focus,
.thm-form-box-1 form input[type="email"]:focus,
.thm-form-box-1 form textarea:focus {
    border: 1px solid var(--thm-base);
    outline: none;
}

.thm-form-box-1 form textarea {
    height: 230px;
    padding-top: 12px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 10px;
}

.thm-form-box-1 form input[type="text"]::-webkit-input-placeholder {
    color: #444444;
}

.thm-form-box-1 form input[type="text"]:-moz-placeholder {
    color: #444444;
}

.thm-form-box-1 form input[type="text"]::-moz-placeholder {
    color: #444444;
}

.thm-form-box-1 form input[type="text"]:-ms-input-placeholder {
    color: #444444;
}


.thm-form-box-1 form input[type="email"]::-webkit-input-placeholder {
    color: #444444;
}

.thm-form-box-1 form input[type="email"]:-moz-placeholder {
    color: #444444;
}

.thm-form-box-1 form input[type="email"]::-moz-placeholder {
    color: #444444;
}

.thm-form-box-1 form input[type="email"]:-ms-input-placeholder {
    color: #444444;
}


.thm-form-box-1 form textarea::-webkit-input-placeholder {
    color: #444444;
}

.thm-form-box-1 form textarea:-moz-placeholder {
    color: #444444;
}

.thm-form-box-1 form textarea::-moz-placeholder {
    color: #444444;
}

.thm-form-box-1 form textarea:-ms-input-placeholder {
    color: #444444;
}

.thm-form-box-1 form .form-group .select-box {
    position: relative;
    display: block;
    width: 100%;
}

.thm-form-box-1 form .form-group .nice-select {
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 8px;
    border: solid 1px #dbdcdd;
    width: 100%;
    height: 60px;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    line-height: 58px;
    outline: none;
    padding-left: 25px;
    padding-right: 25px;
    transition: all 0.2s ease-in-out;
    font-family: var(--thm-font);
}

.thm-form-box-1 form .form-group .nice-select:after {
    position: absolute;
    content: "\e926";
    font-family: 'icomoon' !important;
    color: #7f7873;
    font-size: 12px;
    top: 0px;
    right: 30px;
    bottom: 0;
    margin: 0px;
    font-weight: 400;
    border: none !important;
    transform: rotate(0deg) !important;
}

.thm-form-box-1 form .form-group .nice-select .list {
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
}

.thm-form-box-1 form .form-group .nice-select .option {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 40px;
    min-height: 40px;
}


.thm-form-box-1 form .button-box {
    position: relative;
    display: block;
    padding-top: 10px;
}

.thm-form-box-1 form .button-box button {
    width: 100%;
}


/*** 
  =============================================
      Contact-Style2 Area Css
  =============================================
  ***/
.contact-style2-area {
    position: relative;
    display: block;
    background-color: transparent;
    margin-top: -30px;
    z-index: 10;
}

.contact-style2-area__inner {
    position: relative;
    display: flex;
    z-index: 1;
}

.contact-style2-area__inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: -100000px;
    background-color: #f9fbfd;
    border-bottom: 1px solid #e8ecef;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: -1;
}


.video-gallery-style2 {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 375px;
    height: 200px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.video-gallery-style2-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-color: var(--thm-base);
    background-blend-mode: multiply;
}

.video-gallery-style2 .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.video-gallery-style2 .icon:after,
.video-gallery-style2 .icon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.video-gallery-style2 .icon:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-gallery-style2 .icon .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
}

.video-gallery-style2 .icon .video-popup:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: -10px;
    right: -10px;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0.50;
    z-index: -1;
}

.video-gallery-style2 .icon .video-popup span::before {
    position: relative;
    color: var(--thm-black);
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.video-gallery-style2 .icon:hover .video-popup span::before {
    color: var(--thm-base);
}



.contact-style2-content {
    position: relative;
    margin-right: -345px;
    flex: 1;
}

.contact-style2-content ul {
    position: relative;
    display: flex;
}

.contact-style2-content ul li {
    position: relative;
    display: block;
    width: 380px;
}

.contact-style2-content ul li:nth-child(2) .contact-style2-single-box {
    background-color: #ffffff;
}


.contact-style2-single-box {
    position: relative;
    display: block;
    background-color: #f9fbfd;
    border-bottom: 1px solid #e8ecef;
    padding: 31px 40px 25px;
}

.contact-style2-single-box .icon {
    position: relative;
    display: block;
    line-height: 0;
}

.contact-style2-single-box .icon span {
    color: #1263ea;
    font-size: 64px;
    line-height: 64px;
}

.contact-style2-single-box .title {
    position: relative;
    display: block;
    padding-top: 23px;
}

.contact-style2-single-box .title h3 {
    font-size: 20px;
    line-height: 28px;
}

.contact-style2-single-box .title p {
    color: var(--thm-gray);
}

.contact-style2-single-box .title p a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-style2-single-box .title p a:hover {
    color: var(--thm-base);
}



/*------------------------------------------
    Service Areas Style1
  --------------------------------------------*/
.service-areas-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0px 120px;
    border-top: 1px solid #d2d7dc;
    z-index: 10;
}

.service-areas-style1__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: top right;
    opacity: 0.06;
}


.service-areas-style1__title {
    position: relative;
    display: block;
}

.service-areas-style1__title .sec-title {
    padding-bottom: 0;
}



.service-areas-style1__content {
    position: relative;
    display: block;
    margin-top: -9px;
}

.single-service-areas-style1 {
    position: relative;
    display: block;
}

.single-service-areas-style1 ul {
    position: relative;
    display: block;
}

.single-service-areas-style1 ul li {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font);
    font-weight: 500;
}

.single-service-areas-style1 ul li+li {
    margin-top: 9px;
}

.single-service-areas-style1 ul li a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-areas-style1 ul li a:hover {
    color: var(--thm-base);
    padding-left: 3px;
}



/*------------------------------------------
    flixible price Style1 Css
  --------------------------------------------*/
.flixible-price-style1 {
    position: relative;
    display: block;
    background-color: #ecf0f7;
    padding: 120px 0 120px;
    z-index: 10;
}

.flixible-price-style1 .row {
    --bs-gutter-x: 100px;
}

.flixible-price-style1 .sec-title {
    padding-bottom: 41px;
}

.flixible-price-style1 .sec-title .sub-title {
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
}

.flixible-price-style1 .sec-title .sub-title h5 {
    margin-left: 10px;
    margin-right: 10px;
}


.single-flixible-price-style1-box {
    position: relative;
    display: block;
}

.single-flixible-price-style1-box ul {
    position: relative;
    display: block;
}

.single-flixible-price-style1-box ul li {
    position: relative;
    display: block;
    color: #0e2a4e;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    font-family: var(--thm-font);
    z-index: 1;
}

.single-flixible-price-style1-box ul li+li {
    margin-top: 24px;
}

.single-flixible-price-style1-box ul li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 7px;
    right: 0;
    height: 2px;
    border-bottom: 2px dotted var(--thm-black);
    z-index: -1;
}

.single-flixible-price-style1-box ul li span {
    position: relative;
    display: inline-block;
    background-color: #ecf0f7;
    padding-right: 10px;
}

.single-flixible-price-style1-box ul li b {
    position: relative;
    display: inline-block;
    float: right;
    background-color: #ecf0f7;
    padding-left: 10px;
    font-weight: 500;
}

.flixible-price-style1 .btns-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 53px;
}

.flixible-price-style1__btn {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 53px;
}





/*----------------------------------------
      Featured Services Style1
  ---------------------------------------*/
.featured-service-style1 {
    position: relative;
    display: block;
    background-color: #f7f8fb;
    padding: 120px 0 120px;
    z-index: 10;
}

.featured-service-style1 .sec-title {
    padding-bottom: 49px;
}

.featured-service-style1 .sec-title .sub-title {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.single-featured-service-style1 {
    position: relative;
    display: block;
}

.single-featured-service-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.single-featured-service-style1__overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 2;
}

.single-featured-service-style1 .img-box img {
    width: 100%;
    transform: scale(1.0);
}

.single-featured-service-style1:hover .img-box img {
    transform: scale(1.05) rotate(0deg);
}


.single-featured-service-style1 .title-box {
    position: relative;
    display: block;
    margin-right: 25px;
    margin-top: -50px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: #ffffff;
    padding-left: 130px;
    z-index: 3;
}

.single-featured-service-style1 .title-box .icon {
    position: absolute;
    top: 0;
    left: 0;
    border-bottom-left-radius: 5px;
    background-color: var(--thm-primary);
    width: 100px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-featured-service-style1 .title-box .icon span {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 50px;
}

.single-featured-service-style1 .title-box .inner-title {
    position: relative;
    display: block;
    padding: 17px 0px 17px;
}

.single-featured-service-style1 .title-box .inner-title h3 {
    font-size: 23px;
    line-height: 28px;
}

.single-featured-service-style1 .title-box .inner-title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-featured-service-style1 .title-box .inner-title h3 a:hover {
    color: var(--thm-base);
}



/*------------------------------------------
    Features Facts Css
  --------------------------------------------*/
.features-facts {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 0px 0 120px;
    z-index: 10;
}

.features-facts.pdtop {
    padding-top: 120px;
}


.features__content {
    position: relative;
    display: block;
    padding-right: 60px;
}

.features__content .sec-title {
    padding-bottom: 20px;
}

.features__content .text {
    position: relative;
    display: block;
}

.features__content .text p+p {
    margin-top: 24px;
}


.features__content-list-item {
    position: relative;
    display: block;
    padding-top: 34px;
}

.features__content-list-item ul {
    position: relative;
    display: block;
}

.features__content-list-item ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    color: var(--thm-black);
    font-weight: 500;
}

.features__content-list-item ul li+li {
    margin-top: 4px;
}

.features__content-list-item ul li .icon {
    position: absolute;
    top: 4px;
    left: 0;
    color: var(--thm-primary);
    font-size: 20px;
    line-height: 20px;
}



.facts-content-box-style2 {
    position: relative;
    display: block;
    padding-left: 80px;
}

.facts-content-box-style2:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    width: 1px;
    background-color: #c2c3c6;
}

.facts-content-box-style2 ul {
    position: relative;
}

.facts-content-box-style2 .single-fact-counter {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 100%;
    margin-bottom: 74px;
}

.facts-content-box-style2 .single-fact-counter:last-child {
    margin-bottom: 0;
}

.facts-content-box-style2 .single-fact-counter .icon {
    width: 90px;
    top: 3px;
}

.facts-content-box-style2 .single-fact-counter .count-box {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 50px;
    line-height: 50px;
    font-weight: 900;
    font-family: var(--thm-font);
}

.facts-content-box-style2 .single-fact-counter .title {
    padding-top: 10px;
}

.facts-content-box-style2 .single-fact-counter .title h6 {
    color: var(--thm-primary);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--thm-font);
}



/*------------------------------------------
    Service Style6 Css
  --------------------------------------------*/
.service-style6 {
    position: relative;
    display: block;
    background-color: #f4f4f4;
    padding: 120px 0 120px;
}

.service-style6__top {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-bottom: 59px;
}

.service-style6__top .sec-title {
    padding-bottom: 0;
}

.service-style6__top .text-box {
    position: relative;
    top: -4px;
    display: block;
    max-width: 600px;
    width: 100%;
}

.service-style6__top .text-box p {
    color: #494949;
    font-size: 18px;
    line-height: 28px;
}


.single-service-style6 {
    position: relative;
    display: block;
    border-right: 1px solid #bdbdbd;
}


.single-service-style6 .icon {
    position: relative;
    display: block;

}

.single-service-style6 .icon span {
    color: var(--thm-base);
    font-size: 60px;
    line-height: 60px;

}

.single-service-style6 h3 {
    font-size: 28px;
    line-height: 35px;
    font-weight: 700;
    margin-top: 29px;
    font-family: var(--thm-font);
}

.single-service-style6 h3 a {
    color: var(--thm-black);
}

.single-service-style6 h3 span {
    font-weight: 400;
}

.single-service-style6 .btn-box {
    position: relative;
    display: inline-block;
    margin-top: 44px;
}

.single-service-style6 .btn-box a {
    color: var(--thm-base);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--thm-font-2);
}

.single-service-style6 .btn-box a span {
    position: relative;
    display: inline-block;
    color: #090909;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    padding-left: 15px;
    top: 4px;
}


.service-style6__carousel {
    position: relative;
}

.service-style6__carousel:before {
    content: "";
    position: absolute;
    top: 0;
    right: -3px;
    bottom: 0;
    width: 5px;
    background-color: #f4f4f4;
    z-index: 10;
}

.service-style6__carousel.owl-carousel.owl-dot-style1 .owl-dots {
    margin-top: 60px !important;
}



/*** 
  =============================================
      Fact Counetr Video Area     
  =============================================
  ***/
.fact-counetr-video-area {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 120px 0 67px;
    z-index: 10;
}

.fact-counetr-video-area__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    z-index: -1;
}

.fact-counetr-video-area__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    opacity: 0.70;
    z-index: -1;
}

.fact-counetr-video__content {
    position: relative;
    display: block;
}



.fact-counetr-video__content .title-box {
    position: relative;
    display: block;
    margin-top: -9px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(119, 120, 120, 0.40);
}

.fact-counetr-video__content .title-box h2 {
    color: #ffffff;
    font-size: 47px;
    line-height: 56px;
}

.fact-counetr-video__content .title-box h2 span {
    font-weight: 400;
}


.fact-counter-box-3 {
    position: relative;
    display: block;
    padding-top: 56px;
}

.fact-counter-box-3 .single-fact-counter {
    max-width: 100%;
    width: 100%;
    align-items: flex-start;
    margin-bottom: 46px;
}

.fact-counter-box-3 .single-fact-counter .icon {
    top: 4px;
}

.fact-counter-box-3 .single-fact-counter .outer-box {
    flex: 1;
}

.fact-counter-box-3 .single-fact-counter .count-box {
    color: #ffffff;
    font-size: 35px;
    line-height: 35px;
    font-weight: 700;
    font-family: var(--thm-font-2);
}

.fact-counter-box-3 .single-fact-counter .count-box span {
    line-height: 35px;
}

.fact-counter-box-3 .single-fact-counter .count-box i {
    top: -1px;
    padding-left: 5px;
    font-size: 25px;
}

.fact-counter-box-3 .single-fact-counter .title {
    padding-top: 5px;
}

.fact-counter-box-3 .single-fact-counter .title h6 {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}



.video-gallery-style3-outer {
    position: relative;
    display: block;
    width: 225px;
    float: right;
}

.video-gallery-style3-outer .video-gallery-style2 {
    width: 225px;
    height: 230px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
}

.video-gallery-style3-outer .video-gallery-style2-bg {
    background-color: #000000;
    background-blend-mode: normal;
}

.video-gallery-style3-outer .video-gallery-style2-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    opacity: 0.40;
}


.video-gallery-style3-outer .video-gallery-style2 .icon {
    width: 70px;
    height: 70px;
}

.video-gallery-style3-outer .video-gallery-style2 .icon .video-popup span::before {
    font-size: 25px;
}


.video-gallery-style3-outer .title-box {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 30px 0 33px;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.video-gallery-style3-outer .title-box h3 {
    font-size: 24px;
    line-height: 30px;
    font-family: var(--thm-font);
}

.video-gallery-style3-outer .title-box h3 a {
    color: #000000;
}



/*** 
  =============================================
     Benefits Style1 Css    
  =============================================
  ***/
.benefits-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #ffffff;
    padding: 120px 0 72px;
    z-index: 10;
}

.benefits-style1 .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.15;
}

.benefits-style-1__content {
    position: relative;
    display: block;
    margin-right: -30px;
}

.benefits-style-1__content .sec-title {
    padding-bottom: 30px;
}


.benefits-style-1__content .text {
    position: relative;
    display: block;
}

.benefits-style-1__content .text p {
    margin: 0;
}


.benefits-style-1__content ul {
    position: relative;
    display: block;
    margin-top: 46px;
}

.benefits-style-1__content ul li {
    position: relative;
    display: block;
    width: 50%;
    float: left;
    padding-left: 80px;
    padding-right: 40px;
    margin-bottom: 41px;
}

.benefits-style-1__content ul li:before {
    content: "";
    position: absolute;
    top: 7px;
    right: 30px;
    bottom: 7px;
    width: 1px;
    background-color: #eeeeee;
}

.benefits-style-1__content ul li:nth-child(2):before {
    display: none;
}

.benefits-style-1__content ul li:nth-child(4):before {
    display: none;
}

.benefits-style-1__content ul li:nth-child(6):before {
    display: none;
}


.benefits-style-1__content ul li .icon {
    position: absolute;
    top: 7px;
    left: 0;
    width: 65px;
}

.benefits-style-1__content ul li:nth-child(4) .icon {
    left: -8px;
    top: 7px;
}

.benefits-style-1__content ul li .icon img {
    position: relative;
    display: inline-block;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.benefits-style-1__content ul li:hover .icon img {
    transform: rotateY(180deg);
}

.benefits-style-1__content ul li h3 {
    color: #242424;
    font-size: 20px;
    line-height: 28px;
    font-family: var(--thm-font);
    font-weight: 600;
    margin-bottom: 5px;
}

.benefits-style-1__content ul li p {
    margin: 0;
}




.benefits-style-1__img-box {
    position: relative;
    display: block;
    margin-right: -80px;
    margin-left: 30px;
    max-width: 520px;
}

.benefits-style-1__img-box ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.benefits-style-1__img-box ul li {
    position: relative;
    display: block;
    width: 50%;
    height: 285px;
    float: left;
}

.benefits-style-1__img-box ul li:nth-child(2) {
    background-color: #a91717;
    margin-top: 40px;
}

.benefits-style-1__img-box ul li:nth-child(3) {
    background-color: #3b3c41;
}

.benefits-style-1__img-box ul li .single-box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.benefits-style-1__img-box ul li .single-box .icon {
    position: absolute;
    top: 5px;
    right: 0px;
    opacity: 0.10;
}

.benefits-style-1__img-box ul li:nth-child(3) .single-box .icon {
    top: 15px;
    right: -35px;
}


.benefits-style-1__img-box ul li .single-box__inner {
    position: relative;
    display: block;
    padding: 58px 40px 0;
}

.benefits-style-1__img-box ul li .single-box__inner .btn-box {
    position: relative;
    display: block;
}

.benefits-style-1__img-box ul li .single-box__inner .btn-box a {
    color: #0c0c0c;
    letter-spacing: normal;
}

.benefits-style-1__img-box ul li:nth-child(3) .single-box__inner .btn-box a {
    color: var(--thm-base);
}

.benefits-style-1__img-box ul li .single-box__inner .btn-box a span {
    color: #0c0c0c;
    padding-left: 5px;
}

.benefits-style-1__img-box ul li:nth-child(3) .single-box__inner .btn-box a span {
    color: var(--thm-base);
}

.benefits-style-1__img-box ul li .single-box__inner h2 {
    font-size: 28px;
    line-height: 36px;
    margin: 88px 0 0;
}

.benefits-style-1__img-box ul li .single-box__inner h2 a {
    color: #ffffff;
}



/*** 
  =============================================
    Heating System Style1 Css
  =============================================
  ***/
.heating-system-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    border-top: 1px solid #bdbdbd;
    z-index: 10;
}

.heating-system-style1__img-box {
    position: relative;
    display: block;
    max-width: 665px;
}

.heating-system-style1__img-box .inner {
    position: relative;
    display: block;
}

.heating-system-style1__img-box .inner img {
    width: 100%;
}


.heating-system-style1__img-box .single-item {
    position: absolute;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.heating-system-style1__img-box .single-item.single-item--style2 {
    flex-direction: row-reverse;
}

.heating-system-style1__img-box .single-item.single-item--style2 .round-box {
    margin-right: 0px;
    margin-left: 25px;
}

.heating-system-style1__img-box .single-item.single-item--style2 p:before {
    left: auto;
    right: -12px;
    border-left: 12px solid #f2f2f2;
    border-right: none;
}

.heating-system-style1__img-box .single-item.one {
    top: 10px;
    right: 120px;
}

.heating-system-style1__img-box .single-item.two {
    top: 43%;
    right: 15px;
    transform: translateY(-50%);
}

.heating-system-style1__img-box .single-item.three {
    right: 30px;
    bottom: 35px;
}

.heating-system-style1__img-box .single-item.four {
    top: 150px;
    left: 210px;
}

.heating-system-style1__img-box .single-item .round-box {
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    background-color: var(--thm-base);
    border: 8px solid #ffffff;
    border-radius: 50%;
    margin-right: 25px;
    z-index: 2;
}

.heating-system-style1__img-box .single-item .round-box:before,
.heating-system-style1__img-box .single-item .round-box:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 5s infinite;
    animation: ripple 5s infinite;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    z-index: -1;
}

.heating-system-style1__img-box .single-item .round-box:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.heating-system-style1__img-box .single-item p {
    position: relative;
    display: inline-block;
    background-color: #f2f2f2;
    padding: 0 15px;
    color: #444444;
    font-size: 17px;
    line-height: 35px;
    font-weight: 500;
    transition: all 500ms ease;
}

.heating-system-style1__img-box .single-item p:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 14px;
    top: 10px;
    left: -12px;
    border-right: 12px solid #f2f2f2;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}



.heating-system-style1__content {
    position: relative;
    display: block;
    padding-left: 70px;
}

.heating-system-style1__content .inner-title {
    position: relative;
    display: block;
    padding-left: 40px;
    margin-bottom: 13px;
}

.heating-system-style1__content .inner-title .border-left {
    position: absolute;
    top: 10px;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--thm-base);
}

.heating-system-style1__content .inner-title p {
    color: var(--thm-base);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
}

.heating-system-style1__content .text {
    position: relative;
    display: block;
}

.heating-system-style1__content .text p {
    margin: 0;
}

.heating-system-style1__content ul {
    position: relative;
    display: block;
    margin-top: 28px;
}

.heating-system-style1__content ul li {
    position: relative;
    display: block;
    padding-left: 35px;
    color: #444444;
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font);
    font-weight: 600;
}

.heating-system-style1__content ul li+li {
    margin-top: 9px;
}

.heating-system-style1__content ul li .icon {
    position: absolute;
    top: 5px;
    left: 0;
    line-height: 0;
}

.heating-system-style1__content ul li .icon span {
    position: relative;
    display: inline-block;
    color: #080808;
    font-size: 20px;
    line-height: 20px;
}



/*------------------------------------------
    Mission Content Css
  --------------------------------------------*/
.mission-content-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #d5d5d5;
    margin-top: 100px;
    padding-top: 100px;
}

.mission-content-box .img-box {
    position: relative;
    display: block;
    width: 370px;
    overflow: hidden;
    border-radius: 8px;
}

.mission-content-box .img-box img {
    width: 100%;
}

.mission-content-box .text-box {
    position: relative;
    flex: 1;
    margin-left: 50px;
    margin-right: 50px;
}

.mission-content-box .text-box p {
    color: #0e2a4e;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}



/*------------------------------------------
    Start about our service
  --------------------------------------------*/
.about-our-service {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0px 113px;
    z-index: 10;
}

.about-our-service__content {
    position: relative;
    display: block;
    padding-right: 80px;
}

.about-our-service__content .sec-title {
    padding-bottom: 30px;
}

.about-our-service__content .text-top {
    position: relative;
    display: block;
    margin-bottom: 29px;
}

.about-our-service__content .text-top p {
    margin: 0;
}

.about-our-service__content .text-bottom {
    position: relative;
    display: block;
}

.about-our-service__content .text-bottom p {
    margin: 0;
}



.about-our-service__list-item {
    position: relative;
    display: block;
    margin-top: 118px;
    margin-left: -30px;
}

.about-our-service__list-item::before {
    position: absolute;
    content: '';
    top: 6px;
    left: -65px;
    bottom: -65px;
    right: 0;
    width: 1px;
    background-color: #dddddd;
    margin-left: 12px;
}

.about-our-service__list-item ul {
    position: relative;
    display: block;
}

.about-our-service__list-item ul li {
    position: relative;
    display: block;
    padding-left: 45px;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 30px;
    font-family: var(--thm-font);
    font-weight: 500;
}

.about-our-service__list-item ul li+li {
    margin-top: 14px;
}

.about-our-service__list-item ul li .icon {
    position: absolute;
    left: 0;
    top: -2px;
}

.about-our-service__list-item ul li .icon span {
    position: relative;
    display: inline-block;
    top: 3px;
    color: var(--thm-base);
    font-size: 20px;
    line-height: 30px;
    margin-right: 20px;
}



/*------------------------------------------
    Sercvice Estimate Style1 Css
  --------------------------------------------*/
.sercvice-estimate-style1 {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 11;
}

.sercvice-estimate-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    z-index: -2;
}

.sercvice-estimate-style1__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #0e3e73;
    opacity: 0.75;
}

.sercvice-estimate-style1__img-outer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    z-index: -1;
}

.sercvice-estimate-style1__img-outer .img-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 645px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
}




.sercvice-estimate-style1__content {
    position: relative;
    display: block;
}

.sercvice-estimate-style1__content .sec-title {
    padding-bottom: 33px;
}

.sercvice-estimate-style1__content .sec-title .sub-title .border-left {
    background-color: #ffffff;
}

.sercvice-estimate-style1__content .sec-title .sub-title h5 {
    color: #ffffff;
}

.sercvice-estimate-style1__content .sec-title h2 {
    color: #ffffff;
}

.sercvice-estimate-style1__content .sec-title p {
    color: #ffffff;
    margin: 10px 0 0;
}

.sercvice-estimate-style1__content .sec-title p a {
    color: #ffffff;
    text-decoration: underline;
}

.sercvice-estimate-style1__content .sec-title p a:hover {
    color: #000000;
}




.sercvice-estimate-form {
    position: relative;
    display: block;
}

.sercvice-estimate-form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.sercvice-estimate-form .form-group h6 {
    color: #ffffff;
    font-size: 14px;
    line-height: 31px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 9px;
}


.sercvice-estimate-form form .select-box {
    position: relative;
    display: block;
    width: 100%;
}

.sercvice-estimate-form form .nice-select {
    position: relative;
    display: block;
    background-color: #ffffff;
    border-radius: 4px;
    border: solid 1px #ece6e6;
    width: 100%;
    height: 60px;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    line-height: 58px;
    outline: none;
    padding-left: 25px;
    padding-right: 25px;
    transition: all 0.2s ease-in-out;
    font-family: var(--thm-font);
}

.sercvice-estimate-form form .nice-select:after {
    position: absolute;
    content: "\e926";
    font-family: 'icomoon' !important;
    color: #626378;
    font-size: 12px;
    top: 0px;
    right: 30px;
    bottom: 0;
    margin: 0px;
    font-weight: 400;
    border: none !important;
    transform: rotate(0deg) !important;
}

.sercvice-estimate-form form .nice-select .list {
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scale(1.0) translateY(-30px);
    -ms-transform: scale(1.0) translateY(-30px);
    transform: scale(1.0) translateY(-30px);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    height: 0;
}

.sercvice-estimate-form form .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    height: auto;
}

.sercvice-estimate-form form .nice-select .option {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 40px;
    min-height: 40px;
}



.home-size {
    position: relative;
    display: block;
    margin-bottom: 45px;
}

.home-size .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.home-size .inner .left {
    position: relative;
    display: block;
    float: left;
}

.home-size .inner .left label.control-label {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--thm-font-2);
    margin: 0;
}

.home-size .inner .right {
    position: relative;
    display: block;
    float: right;
    top: 3px;
}

.home-size .inner .right input#amount {
    position: relative;
    display: block;
    width: 160px;
    height: auto;
    padding: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 28px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: transparent;
    border: none;
    text-align: right;
    box-shadow: none;
    font-family: var(--thm-font-2);
    letter-spacing: 0.1em;
}



.home-size .ui-widget-content {
    position: relative;
    background: #ffffff;
    border: none;
    height: 8px;
    border-radius: 4px !important;
    margin: 23px 0 0;
    border-radius: 0;
    text-align: left;
}

.home-size .ui-slider-handle {
    position: absolute;
    background: #ffffff;
    border: 4px solid var(--thm-base);
    border-radius: 50%;
    height: 30px;
    width: 30px !important;
    margin-left: -15px !important;
    outline: medium none;
    cursor: pointer;
    z-index: 2;
}

.home-size .ui-slider-horizontal .ui-slider-handle {
    top: -12px;
}

.home-size .ui-slider .ui-slider-range {
    background: var(--thm-base);
    border-radius: 4px;
}




.sercvice-estimate-form form .total-amount {
    position: relative;
    display: block;
    margin-top: -14px;
}

.sercvice-estimate-form form .total-amount h6 {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 3px;
}

.sercvice-estimate-form form .total-amount h2 {
    color: #ffffff;
    font-size: 45px;
    line-height: 50px;
    font-weight: 700;
    font-family: var(--thm-font);
}



.sercvice-estimate-style1__right-box {
    position: relative;
    display: block;
    padding-top: 55px;
    margin-left: 55px;
}

.sercvice-estimate-style1__right-box ul {
    position: relative;
    display: block;
}

.sercvice-estimate-style1__right-box ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 270px;
    height: 235px;
    background-color: #1177ea;
    padding: 30px 30px 30px;
    padding-right: 30px;
}

.sercvice-estimate-style1__right-box ul li:first-child {
    padding-top: 40px;
}

.sercvice-estimate-style1__right-box ul li:last-child {
    background-color: var(--thm-base);
}

.sercvice-estimate-style1__right-box ul li h2 {
    color: #ffffff;
    font-size: 35px;
    line-height: 40px;
    font-weight: 800;
    margin: 0 0 17px;
    font-family: var(--thm-font);
}

.sercvice-estimate-style1__right-box ul li p {
    color: #ffffff;
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
}


.sercvice-estimate-style1__right-box ul li .btn-box {
    position: relative;
    display: block;
    padding-top: 20px;
}

.sercvice-estimate-style1__right-box ul li .btn-box a {
    color: var(--thm-black);
    padding: 0;
    line-height: 50px;
    width: 100%;
    text-align: center;
}

.sercvice-estimate-style1__right-box ul li .btn-box a:hover {
    color: #ffffff;
}

.sercvice-estimate-style1__right-box ul li .btn-box a:after {
    background-image: none;
    background-color: #ffffff;
}

.sercvice-estimate-style1__right-box ul li .btn-box a:before {
    background-color: var(--thm-black);
}



/*------------------------------------------
    Sercvice Estimate Style2 Css
  --------------------------------------------*/
.sercvice-estimate-style2 {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 11;
}

.sercvice-estimate-style2__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    z-index: -1;
}

.sercvice-estimate-style2 .sercvice-estimate-form {
    max-width: 670px;
}




.sercvice-estimate-style2__right-box {
    position: relative;
    display: block;
}

.sercvice-estimate-style2__right-box ul {
    position: relative;
    display: block;
}

.sercvice-estimate-style2__right-box ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 270px;
    height: 235px;
    background-color: var(--thm-base);
    padding: 30px 30px 30px;
    text-align: center;
}

.sercvice-estimate-style2__right-box ul li:last-child {
    background-color: var(--thm-base);
}

.sercvice-estimate-style2__right-box ul li:last-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background-color: #ffffff;
    opacity: 0.40;
}

.sercvice-estimate-style2__right-box ul li h2 {
    color: #ffffff;
    font-size: 35px;
    line-height: 40px;
    font-weight: 700;
    margin: 0 0 17px;
    font-family: var(--thm-font);
}

.sercvice-estimate-style2__right-box ul li p {
    color: #ffffff;
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
}














/*** 
  =============================================
      Appointment Area Css
  =============================================
  ***/
.appointment-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.appointment-title {
    position: relative;
    display: block;
    margin-top: -9px;
    padding-bottom: 52px;
}

.appointment-title h2 {
    color: #0e2a4e;
    font-size: 45px;
    line-height: 53px;
    font-weight: 900;
    margin: 0 0 20px;
}

.appointment-title p {
    margin: 0;
}



.appointment-form-box {
    position: relative;
    display: block;
    max-width: 790px;
    width: 100%;
}

.appointment-form .single-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 16px;
}

.appointment-form .single-box .inner-title h3 {
    color: #0e2a4e;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    font-family: var(--thm-font);
}

.appointment-form {
    position: relative;
    display: block;
}

.appointment-form .single-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 30px;
}

.appointment-form .single-box.selectbox {
    overflow: inherit;
}

.appointment-form .single-box .jobsite-address input {
    margin-bottom: 20px;
}



.appointment-checkbox {
    position: relative;
    display: block;
}

.appointment-checkbox .single-checkbox {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 30px;
}

.appointment-checkbox label {
    position: relative;
    display: inline-block;
    padding-left: 0px;
    margin-right: 0px;
    margin-bottom: 0;
    color: #444444;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    cursor: pointer;
    font-family: var(--thm-font);
}

.appointment-checkbox input[type="checkbox"] {
    display: none;
}

.appointment-checkbox input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 8px;
    left: 0;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    background-color: #aeb3b9;
    border: 1px solid #8e8f8f;
    cursor: pointer;
    border-radius: 0;
    transition: all 300ms ease;
}

.appointment-checkbox label span:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    font-family: 'icomoon' !important;
    content: "\e947";
    color: #000000;
    font-size: 13px;
    line-height: 13px;
    text-align: center;
    border-radius: 50%;
    opacity: 0;
    background-color: transparent;
    transition: all 300ms ease;
}

.appointment-checkbox input[type="checkbox"]:checked+label span {
    border-color: #16232a;
}

.appointment-checkbox input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}


.appointment-form input[type="text"],
.appointment-form input[type="email"],
.appointment-form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #dddddd;
    width: 100%;
    height: 40px;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.appointment-form textarea {
    height: 180px;
}

.appointment-form .date-box {
    position: relative;
    display: block;
    width: 270px;
}

.appointment-form .date-box .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #898989;
    font-size: 16px;
}

.appointment-form .date-box .icon span:before {
    position: relative;
    top: 2px;
}


.appointment-form .time-box {
    position: relative;
    display: block;
    width: 270px;
}

.appointment-form .time-box .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #898989;
    font-size: 16px;
}

.appointment-form .time-box .icon span:before {
    position: relative;
    top: 2px;
}




.newsletter-checkbox {
    position: relative;
    display: block;
}

.newsletter-checkbox label {
    position: relative;
    display: inline-block;
    padding-left: 0px;
    margin-right: 0px;
    margin-bottom: 0;
    color: #444444;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    font-family: var(--thm-font);
}

.newsletter-checkbox input[type="checkbox"] {
    display: none;
}

.newsletter-checkbox input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 8px;
    left: 0;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    background-color: #cbcfd5;
    border: 1px solid #8e8f8f;
    cursor: pointer;
    border-radius: 0;
    transition: all 300ms ease;
}

.newsletter-checkbox label span:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    font-family: 'icomoon' !important;
    content: "\e947";
    color: #000000;
    font-size: 12px;
    line-height: 13px;
    font-weight: 500;
    text-align: center;
    border-radius: 0%;
    opacity: 0;
    background-color: transparent;
    transition: all 300ms ease;
}

.newsletter-checkbox input[type="checkbox"]:checked+label span {
    border-color: #16232a;
}

.newsletter-checkbox input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}



.appointment-form .select-box {
    position: relative;
    display: block;
    width: 100%;
}

.appointment-form .nice-select {
    position: relative;
    display: block;
    background-color: #ffffff;
    border-radius: 0px;
    border: solid 1px #dddddd;
    width: 100%;
    height: 40px;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    line-height: 38px;
    outline: none;
    padding-left: 20px;
    padding-right: 20px;
    transition: all 0.2s ease-in-out;
    font-family: var(--thm-font);
}

.appointment-form .nice-select:after {
    position: absolute;
    content: "\e926";
    font-family: 'icomoon' !important;
    color: #aeaeae;
    font-size: 12px;
    top: 0px;
    right: 25px;
    bottom: 0;
    margin: 0px;
    font-weight: 400;
    border: none !important;
    transform: rotate(0deg) !important;
}

.appointment-form .nice-select .list {
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
}

.appointment-form .nice-select .option {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 40px;
    min-height: 40px;
}

.appointment-form-button {
    position: relative;
    display: block;
}



/*------------------------------------------
    Special Offers Style1 Css
  --------------------------------------------*/
.special-offers-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.special-offers-style1 .sec-title {
    padding-bottom: 53px;
}

.special-offers-style1 .sec-title p {
    margin: 20px 0 0;
}

.special-offers-style1__content {
    position: relative;
    display: block;
    max-width: 970px;
    width: 100%;
}

.single-offers-box {
    position: relative;
    display: block;
    overflow: hidden;
    border: 2px dashed #7d7d7d;
    padding: 35px 60px 36px;
    padding-right: 270px;
}

.single-offers-box .text-box {
    position: relative;
    display: block;
}

.single-offers-box .text-box h2 {
    color: var(--thm-base);
    font-size: 33px;
    line-height: 40px;
    font-weight: 900;
    margin: 0 0 7px;
}

.single-offers-box .text-box p {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font);
    font-weight: 600;
    margin: 0 0 9px;
}

.single-offers-box .text-box span {
    color: #797979;
    font-size: 18px;
    font-family: var(--thm-font);
}

.single-offers-box .img-box {
    position: absolute;
    bottom: 0px;
    right: 30px;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.single-offers-box .img-box:before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0px;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background-color: #feb831;
    border-radius: 50%;
    z-index: -1;
}




/*------------------------------------------
    Pricing plan Css
  --------------------------------------------*/
.pricing-plan {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding-top: 120px;
    z-index: 10;
}

.pricing-plan__img {
    position: relative;
    display: block;
    min-height: 737px;
}

.pricing-plan__img .inner {
    position: absolute;
    left: -100px;
    bottom: 0;
}



.pricing-plan__content {
    position: relative;
    display: block;
    padding-bottom: 80px;
}

.single-price-box {
    position: relative;
    display: block;
    border-radius: 6px;
    background-color: #f0f1f9;
    padding: 0px 40px 30px;
    padding-right: 30px;
    margin-bottom: 40px;
    z-index: 1;
}

.single-price-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    border-radius: 6px;
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 500ms ease;
    z-index: -1;
}

.single-price-box:hover:before {
    opacity: 1;
    transform: perspective(400px) scaleX(1.0);
}

.single-price-box .table-header {
    position: relative;
    display: block;
}

.single-price-box .table-header .price-box {
    position: relative;
    display: block;
    width: 225px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background-color: var(--thm-base);
    padding: 10px 0px 12px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-price-box:hover .table-header .price-box {
    background-color: #ffffff;
}

.single-price-box .table-header .price-box h2 {
    color: #ffffff;
    font-size: 32px;
    line-height: 40px;
    font-family: var(--thm-font);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-price-box:hover .table-header .price-box h2 {
    color: var(--thm-base);
}

.single-price-box .table-header .price-box h2 span {
    font-size: 20px;
    line-height: 30px;
}



.single-price-box .inner-title {
    position: relative;
    display: block;
    margin-top: 32px;
}

.single-price-box .inner-title h3 {
    font-size: 26px;
    line-height: 36px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-price-box:hover .inner-title h3 {
    color: #ffffff;
}



.single-price-box .price-list {
    position: relative;
    display: block;
    margin-top: 22px;
}

.single-price-box .price-list ul {
    position: relative;
    display: block;
}

.single-price-box .price-list ul li {
    position: relative;
    display: block;
    padding-left: 25px;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font);
    font-weight: 500;
    margin-bottom: 14px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-price-box:hover .price-list ul li {
    color: #ffffff;
}

.single-price-box .price-list ul li:last-child {
    margin-bottom: 0;
}

.single-price-box .price-list ul li .icon {
    position: absolute;
    top: -1px;
    left: 0;
}

.single-price-box .price-list ul li .icon img {
    width: auto;
    transition: all 500ms ease;
}

.single-price-box:hover .price-list ul li .icon img {
    filter: invert(1);
}

.single-price-box .table-footer {
    position: relative;
    display: block;
    padding-top: 23px;
}

.single-price-box .table-footer a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    z-index: 1;
}

.single-price-box .table-footer a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #6caaf7;
    border-radius: 50%;
    transition: all 500ms ease;
    z-index: -1;
}

.single-price-box:hover .table-footer a:before {
    background-color: #000000;
}

.single-price-box .table-footer a span {
    position: relative;
    display: inline-block;
    color: #000000;
    font-size: 40px;
    right: 13px;
    transition: all 500ms ease;
}

.single-price-box:hover .table-footer a span {
    color: #ffffff;
}



/*------------------------------------------
    Finance Style1 Css
  --------------------------------------------*/
.finance-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0px 120px;
    z-index: 10;
}

.finance-style1__content-box {
    position: relative;
    display: block;
}

.finance-style1__content-box .sec-title {
    padding-bottom: 30px;
}

.finance-style1__content-box .taxt-box-top {
    position: relative;
    display: block;
}


.finance-style1__content-box .taxt-box-maddle {
    position: relative;
    display: block;
    padding: 24px 0 26px;
}


.finance-style1__content-box .taxt-box-bottom {
    position: relative;
    display: block;
}

.finance-style1__content-box .taxt-box-bottom p {
    color: #090d30;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}

.finance-style1__content-box .taxt-box-bottom p+p {
    margin-top: 27px;
}



.finance-style1__logo-box {
    position: relative;
    display: block;
    padding-top: 60px;
}

.finance-style1__logo-box ul {
    position: relative;
    display: flex;
    align-items: center;
}

.finance-style1__logo-box ul li {
    position: relative;
    display: block;
    float: left;
}

.finance-style1__logo-box ul li+li {
    margin-left: 30px;
}



/*** 
  =============================================
      Project details style1 Css     
  =============================================
  ***/
.project-details-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.project-details-style1__content {
    position: relative;
    display: block;
}

.project-details-style1__content .sec-title {
    padding-bottom: 30px;
}

.project-details-style1__content-text1 {
    position: relative;
    display: block;
}



.project-details-style1__content-text2 {
    position: relative;
    display: block;
    padding: 46px 0 51px;
}

.project-details-style1__content-text2 h3 {
    color: var(--thm-black);
    font-size: 32px;
    line-height: 40px;
    margin: 0 0 12px;
}

.project-details-style1__content-text2 p+p {
    margin-top: 14px;
}



.project-details-style1__content-text3 {
    position: relative;
    display: block;
    padding-left: 25px;
    margin: 0px 0 49px;
}

.project-details-style1__content-text3 .quote-icon {
    color: var(--thm-base);
    font-size: 40px;
    margin: 0 0 18px;
}

.project-details-style1__content-text3 h5 {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    margin: 21px 0 0;
}


.project-details-style1__content-text4 {
    position: relative;
    display: block;
}

.project-details-style1__content-text4 h3 {
    font-size: 32px;
    line-height: 40px;
    margin: 0 0 12px;
}



.project-details-style1__img-box {
    position: relative;
    display: block;
}

.single-project-details-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #000000;
    margin-bottom: 30px;
}

.single-project-details-style1 img {
    width: 100%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-project-details-style1:hover img {
    transform: scale(1.02);
    transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}



/*** 
  =============================================
      Offers Coupons Area Css      
  =============================================
  ***/
.offers-coupons-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.offers-coupons__content {
    position: relative;
    display: block;
}

.offers-coupons__content .sec-title {
    padding-bottom: 30px;
}

.offers-coupons__content-inner {
    position: relative;
    display: block;
}

.offers-coupons__content-inner ul {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 15px;
}

.offers-coupons__content-inner ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    color: #04225d;
    font-size: 20px;
    font-weight: 500;
}

.offers-coupons__content-inner ul li+li {
    margin-top: 11px;
}

.offers-coupons__content-inner ul li .icon {
    position: absolute;
    top: 2px;
    left: 0;
    color: var(--thm-base);
    font-size: 18px;
}



.free-estimates-content-box {
    position: relative;
    display: block;
    max-width: 970px;
    width: 100%;
    padding-top: 70px;
}

.free-estimates-content-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 39px;
}

.free-estimates-content-box .inner-title h2 {
    font-size: 30px;
    line-height: 32px;
    font-weight: 700;
    margin: 0 0 12px;
}

.free-estimates-content-box .inner-title p {
    color: #444444;
    font-size: 20px;
    line-height: 38px;
    font-weight: 600;
}


.free-estimates-content-box ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.free-estimates-content-box ul li {
    position: relative;
    display: block;
    margin-bottom: 50px;
}

.free-estimates-content-box ul li:last-child {
    margin-bottom: 0;
}


.single-offers-box--style2 {
    padding-right: 40px;
    padding-left: 280px;
    background-color: #f7fbfe;
}

.single-offers-box--style2 .img-box {
    bottom: 0px;
    left: 30px;
    right: auto;
}



/*** 
  =============================================
      Tips Tricks Area Css      
  =============================================
  ***/
.tips-tricks-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 88px;
    z-index: 10;
}

.tips-tricks__content {
    position: relative;
    display: block;
}

.tips-tricks__content .inner-title {
    position: relative;
    display: block;
    padding-bottom: 49px;
    margin-top: -10px;
}

.tips-tricks__content .inner-title h2 {
    font-size: 45px;
    line-height: 56px;
    font-weight: 900;
    margin: 0 0 9px;
}



.tips-tricks__content-inner {
    position: relative;
    display: block;
}

.tips-tricks__content-inner .single-box {
    position: relative;
    display: block;
    padding-bottom: 49px;
}

.tips-tricks__content-inner .single-box h2 {
    font-size: 30px;
    line-height: 34px;
    font-weight: 900;
    margin: 0 0 15px;
}

.tips-tricks__content-inner .single-box ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.tips-tricks__content-inner .single-box ul li {
    position: relative;
    display: block;
    padding-left: 20px;
    color: #444444;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.tips-tricks__content-inner .single-box ul li+li {
    margin-top: 10px;
}

.tips-tricks__content-inner .single-box ul li .dashed {
    position: absolute;
    top: 16px;
    left: 0;
    width: 8px;
    height: 2px;
    background-color: #444444;
}



.tips-tricks__content .bottom-text {
    position: relative;
    display: block;
    padding-top: 24px;
    padding-right: 50px;
}

.tips-tricks__content .bottom-text h2 {
    color: #090d30;
    font-size: 32px;
    line-height: 46px;
    font-weight: 600;
}



/*** 
  =============================================
      Project Page One Css      
  =============================================
  ***/
.project-page-one {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 90px;
    z-index: 10;
}


.project-menu-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 51px;
}

.project-filter {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.project-filter li {
    position: relative;
    display: inline-block;
    float: none;
    margin: 0 18px 10px;
}

.project-filter li .filter-text {
    position: relative;
    display: block;
    color: #242424;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all .4s ease;
    z-index: 1;
    font-family: var(--thm-font);
}

.project-filter li .filter-text:before {
    position: absolute;
    left: -1px;
    bottom: -1px;
    right: -1px;
    height: 1px;
    content: "";
    background: var(--thm-base);
    transform: scaleX(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.project-filter li:hover .filter-text:before,
.project-filter li.active .filter-text:before {
    transform: scaleX(1.0);
}

.project-filter li:hover .filter-text,
.project-filter li.active .filter-text {
    color: var(--thm-base);
}

.project-filter li .count {
    display: none;
}



.project-page-one .sec-title {
    padding-bottom: 54px;
}

.project-page-one .sec-title .sub-title {
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
}

.project-page-one .sec-title .sub-title h5 {
    margin-left: 10px;
    margin-right: 10px;
}

.project-page-one .sec-title p {
    color: #444444;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin-top: 11px;
}


.single-project-item--style2 {
    position: relative;
    margin-bottom: 30px;
}

.single-project-item--style2.marginbtm {
    margin-bottom: 47px;
}

.single-project-item--style2 .img-holder-img-bg {
    background-color: #0296e9;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    border-radius: 6px;
    z-index: 1;
}

.single-project-item--style2:hover .img-holder-img-bg {
    opacity: 0.90;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.single-project-item--style2 .img-holder .overlay-button a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: var(--thm-base);
    font-size: 25px;
    line-height: 56px;
}

.single-project-item--style2 .img-holder .overlay-button a::before {
    border-radius: 50%;
}


.single-project-item--style2 .img-holder .overlay-title {
    padding: 0 30px 28px;
    padding-right: 20px;
}

.single-project-item--style2 .img-holder .overlay-title h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--thm-font);
    margin: 0 0 0px;
}

.single-project-item--style2 .img-holder .overlay-title p {
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
}




.single-project-item--style2 .title-holder {
    position: relative;
    display: block;
    padding-top: 25px;
}

.single-project-item--style2 .title-holder h4 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--thm-font);
    margin: 0 0 1px;
}

.single-project-item--style2 .title-holder h4 a {
    color: #242424;
}

.single-project-item--style2 .title-holder p {
    color: #242424;
    line-height: 20px;
}



/*** 
  =============================================
      Project Page Two Css      
  =============================================
  ***/
.project-page-two {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 70px;
    z-index: 10;
}

.project-page-two .sec-title {
    padding-bottom: 54px;
}

.project-page-two .sec-title .sub-title {
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
}

.project-page-two .sec-title .sub-title h5 {
    margin-left: 10px;
    margin-right: 10px;
}

.project-page-two .sec-title p {
    color: #444444;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin-top: 11px;
}



/*** 
  =============================================
      Service Page Css      
  =============================================
  ***/
.service-page {
    position: relative;
    display: block;
    background-color: #ecf0f7;
    padding: 120px 0 113px;
    z-index: 10;
}


.service-page .sec-title {
    padding-bottom: 53px;
}

.service-page .sec-title p {
    margin: 20px 0 0;
}


.service-page .single-service-style1 {
    margin-bottom: 30px;
}





.service-page__bottom {
    position: relative;
    display: block;
    margin-top: 80px;
}

.service-page__bottom h2 {
    font-size: 45px;
    line-height: 56px;
    font-weight: 900;
    margin-bottom: 31px;
}

.service-page__bottom .text-top {
    margin: 0;
}

.service-page__bottom .text-top p {
    color: #242424;
    font-size: 20px;
}



.service-page__bottom .bottom-text {
    position: relative;
    display: block;
    padding-top: 37px;
}

.service-page__bottom .bottom-text p {
    color: #242424;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
}



/*** 
  =============================================
      Service Details Page1 Css      
  =============================================
  ***/
.service-details-page1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.service-details-page1__content {
    position: relative;
    display: block;
    padding-right: 30px;
}

.service-details-page1__content .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-details-page1__content .img-box img {
    width: 100%;
}


.service-details-page1__content .text-box {
    position: relative;
    display: block;
    padding-top: 45px;
}

.service-details-page1__content .text-box h2 {
    font-size: 34px;
    line-height: 40px;
    font-weight: 900;
    margin: 0 0 12px;
}

.service-details-page1__content .text-box p+p {
    margin-top: 24px;
}



.service-details-page1__text2 {
    position: relative;
    display: block;
    padding: 53px 0 50px;
}

.service-details-page1__text2 .image {
    position: relative;
    display: block;
    margin-right: -2.5px;
}

.service-details-page1__text2 .image img {
    width: 100%;
}

.service-details-page1__text2 .text {
    position: relative;
    display: block;
    padding-left: 12.5px;
}

.service-details-page1__text2 .text h3 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 900;
    margin: 0 0 13px;
}

.service-details-page1__text2 .text p {
    margin: 0 0 18px;
}

.service-details-page1__text2 .text ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-details-page1__text2 .text ul li {
    position: relative;
    display: block;
    padding-left: 20px;
    color: #051d3e;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}

.service-details-page1__text2 .text ul li+li {
    margin-top: 7px;
}

.service-details-page1__text2 .text ul li .dashed {
    position: absolute;
    top: 16px;
    left: 0;
    width: 8px;
    height: 2px;
    background-color: #051d3e;
}




.service-details-page1__text3 {
    position: relative;
    display: block;
}

.service-details-page1__text3 .row {
    --bs-gutter-x: 0px;
}

.service-details-page1__text3 .row li {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #e9e9e9;
    padding: 24px 25px 27px;
    z-index: 1;
}

.service-details-page1__text3 .row li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    border-radius: 0px;
    background-color: #fafafa;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top center;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.service-details-page1__text3 .row li:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.service-details-page1__text3 .row li:last-child {
    border-left: none;
}

.service-details-page1__text3 .single-box {
    position: relative;
    display: block;
    padding-left: 80px;
}

.service-details-page1__text3 .single-box .icon {
    position: absolute;
    top: 6px;
    left: 0;
    line-height: 0;
}

.service-details-page1__text3 .single-box .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 60px;
    line-height: 60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-details-page1__text3 .single-box:hover .icon span {
    transform: scale(0.9);
}

.service-details-page1__text3 .single-box .text {
    position: relative;
    display: block;
}

.service-details-page1__text3 .single-box .text h3 {
    color: #000000;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 4px;
}



.service-details-choose-box {
    position: relative;
    display: block;
    padding-top: 53px;
}

.service-details-choose-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 31px;
}

.service-details-choose-box .inner-title h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 900;
}

.service-details-choose-box .accordion-box {
    position: relative;
    display: block;
}





.service-details-sidebar-box {
    position: relative;
    display: block;
}

.service-details-page-links {
    position: relative;
    display: block;
    margin-bottom: 50px;
}

.service-details-page-links ul {
    position: relative;
    display: block;
}

.service-details-page-links ul li {
    position: relative;
    display: block;
}

.service-details-page-links ul li a {
    position: relative;
    display: block;
    background-color: #f1f1f1;
    border-bottom: 3px solid #ffffff;
    padding: 12px 30px 12px;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.service-details-page-links ul li:last-child a {
    border-bottom: none;
}

.service-details-page-links ul li.current a,
.service-details-page-links ul li:hover a {
    color: #ffffff;
    padding-left: 55px;
}

.service-details-page-links ul li a:before {
    content: "";
    position: absolute;
    top: 25px;
    left: 30px;
    width: 0px;
    height: 1px;
    background-color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-details-page-links ul li.current a:before,
.service-details-page-links ul li:hover a:before {
    width: 15px;
}

.service-details-page-links ul li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    background-color: #005cb4;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: left right;
    -webkit-transform: scale(1, 0);
    transform: scale(0, 1);
    z-index: -1;
}

.service-details-page-links ul li.current a::after,
.service-details-page-links ul li:hover a::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: right center;
}



.sidebar-download-box {
    position: relative;
    display: block;
    margin-top: -4px;
    padding-top: 50px;
}

.sidebar-download-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 25px;
}

.sidebar-download-box .inner-title h2 {
    color: #242424;
    font-size: 28px;
    line-height: 30px;
    font-weight: 900;
}

.sidebar-download-box .dwn-btn {
    position: relative;
    display: block;
}

.sidebar-download-box .dwn-btn a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    font-family: var(--thm-font);
    line-height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    padding-right: 0px;
}

.sidebar-download-box .dwn-btn a i {
    top: 2px;
    padding-left: 5px;
    font-size: 25px;
}

.sidebar-download-box .dwn-btn a:after {
    background-image: none;
    background-color: #051d3e;
}




.service-details-contact-info-box {
    position: relative;
    display: block;
}

.service-details-contact-info-box .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.service-details-contact-info-box .img-box img {
    width: 100%;
    transform: scale(1.0);
}

.service-details-contact-info-box:hover .img-box img {
    transform: scale(1.03) rotate(0deg);
}

.service-details-contact-info-box .img-box::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 85px;
    background-color: var(--thm-base);
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    z-index: 2;
}

.service-details-contact-info-box .img-box::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: -1px;
    height: 65px;
    background-color: #001b3b;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    z-index: 2;
}

.service-details-contact-info-box .title-box {
    position: relative;
    display: block;
    background-color: #001b3b;
    padding: 17px 30px 40px;
}

.service-details-contact-info-box .title-box h3 {
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 6px;
}

.service-details-contact-info-box .title-box h3 span {
    font-size: 24px;
    line-height: 30px;
    font-family: var(--thm-font);
    font-weight: 500;
}

.service-details-contact-info-box .title-box h2 {
    color: #ffffff;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 21px;
}

.service-details-contact-info-box .title-box .btn-box {
    position: relative;
    display: block;
}

.service-details-contact-info-box .title-box .btn-box a {
    line-height: 50px;
    padding-left: 30px;
    padding-right: 30px;
}



/*---------------------------------------
    Service Details Page2 Sec1 Css
  -----------------------------------------*/
.service-details-page2-sec1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.service-details-page2-sec1__image {
    position: relative;
    display: block;
    padding-right: 20px;
}

.service-details-page2-sec1__image .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-details-page2-sec1__image .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    z-index: 1;
    transition: all 500ms ease;
    background-image: linear-gradient(0deg,
            var(--thm-black) 0%,
            rgba(255, 255, 255, 0) 60%);
}

.service-details-page2-sec1__image:hover .inner::before {
    opacity: 0;
}

.service-details-page2-sec1__image .inner img {
    width: 100%;
    transform: scale(1.01);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: all;
    transition-property: all;
}

.service-details-page2-sec1__image .inner:hover img {
    transform: scale(1.1) rotate(0.5deg);
}



.service-details-page2-sec1__content {
    position: relative;
    display: block;
    padding-left: 50px;
}

.service-details-page2-sec1__content .sec-title {
    padding-bottom: 30px;
}

.service-details-page2-sec1__content .text {
    position: relative;
    display: block;
}

.service-details-page2-sec1__content ul {
    position: relative;
    display: block;
    padding-top: 28PX;
    margin-bottom: 34px;
}

.service-details-page2-sec1__content ul li {
    position: relative;
    display: block;
    padding-left: 35px;
    color: #242424;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    font-family: var(--thm-font);
    margin-bottom: 4px;
}

.service-details-page2-sec1__content ul li:last-child {
    margin-bottom: 0;
}

.service-details-page2-sec1__content ul li .icon {
    position: absolute;
    top: 2px;
    left: 0px;
}

.service-details-page2-sec1__content ul li .icon span {
    color: var(--thm-base);
    font-size: 20px;
    line-height: 20px;
}

.service-details-page2-sec1__content .bottom-text {
    position: relative;
    display: block;
}



/*---------------------------------------
    Service Details Page2 Sec2 Css
  -----------------------------------------*/
.service-details-page2-sec2 {
    position: relative;
    display: block;
    background-color: #08335e;
    padding: 0px 0 0px;
    z-index: 10;
}


.service-details-page2-sec2__image {
    position: relative;
    display: block;
    padding-top: 120px;
    padding-right: 50px;
    z-index: 1;
}

.service-details-page2-sec2__image-bg {
    position: absolute;
    top: 0;
    left: -10000px;
    bottom: 0;
    right: 220px;
    background: #04407d;
    z-index: -1;
}

.service-details-page2-sec2__image .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-details-page2-sec2__image .inner img {
    width: 100%;
    transition: all 1500ms ease;
}

.service-details-page2-sec2__image:hover .inner img {
    transform: scale(1.1) rotate(0.5deg);
}

.service-details-page2-sec2__image .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    z-index: 1;
    transition: all 500ms ease;
    background-image: linear-gradient(0deg,
            var(--thm-black) 0%,
            rgba(255, 255, 255, 0.1) 10%);
}

.service-details-page2-sec2__image:hover .inner::before {
    opacity: 0;
}



.service-details-page2-sec2__content {
    position: relative;
    display: block;
    padding-top: 120px;
    padding-left: 20px;
}

.service-details-page2-sec2__content .sec-title {
    padding-bottom: 35px;
}

.service-details-page2-sec2__content .sec-title h2 {
    color: #ffffff;
}

.service-details-page2-sec2__content .sec-title p {
    color: #ffffff;
    font-size: 20px;
    line-height: 28px;
    margin: 21px 0 0;
}

.service-details-page2-sec2__content .text {
    position: relative;
    display: block;
}

.service-details-page2-sec2__content .text p {
    color: #ffffff;
}



.service-details-page2-sec2__content ul {
    position: relative;
    display: block;
    padding-top: 38PX;
}

.service-details-page2-sec2__content ul li {
    position: relative;
    display: block;
    padding-left: 35px;
    color: #ffffff;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    font-family: var(--thm-font);
    margin-bottom: 10px;
}

.service-details-page2-sec2__content ul li:last-child {
    margin-bottom: 0;
}

.service-details-page2-sec2__content ul li .icon {
    position: absolute;
    top: 2px;
    left: 0px;
}

.service-details-page2-sec2__content ul li .icon span {
    color: var(--thm-base);
    font-size: 20px;
    line-height: 20px;
}




/*** 
  =============================================
      Service Details Style3 Css      
  =============================================
  ***/
.service-details-style3 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.service-details-style3__content {
    position: relative;
    display: block;
    padding-right: 30px;
}

.service-details-style3__content .inner-title {
    position: relative;
    display: block;
    margin-top: -10px;
    padding-bottom: 43px;
}

.service-details-style3__content .inner-title h2 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 900;
    margin-bottom: 19px;
}



.service-details-style3-img-box {
    position: relative;
    display: block;
}

.service-details-style3-img-box .single-img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-details-style3-img-box .single-img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    z-index: 1;
    transition: all 500ms ease;
    background-image: linear-gradient(0deg,
            var(--thm-black) 0%,
            rgba(255, 255, 255, 0) 50%);
}

.service-details-style3-img-box .single-img-box:hover::before {
    opacity: 0;
}


.service-details-style3-img-box .single-img-box img {
    width: 100%;
    transform: scale(1.0);
}

.service-details-style3-img-box .single-img-box:hover img {
    transform: scale(1.05) rotate(1deg);
}

.service-details-style3-img-box .single-img-box .video-gallery-style2 {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: auto;
    overflow: initial;
}

.service-details-style3-img-box .single-img-box .video-gallery-style2 .video-gallery-style2-bg {
    display: none;
}



.service-details-style3-bottom-text {
    position: relative;
    display: block;
    margin-top: 70px;
}

.service-details-style3-bottom-text h2 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 900;
    margin-bottom: 21px;
}

.service-details-style3-bottom-text .list-items {
    position: relative;
    display: block;
    margin-top: 36px;
}

.service-details-style3-bottom-text .list-items ul {
    position: relative;
    display: block;
}

.service-details-style3-bottom-text .list-items ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    color: #242424;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    margin-bottom: 7px;
}

.service-details-style3-bottom-text .list-items ul li:last-child {
    margin-bottom: 0;
}

.service-details-style3-bottom-text .list-items ul li .icon {
    position: absolute;
    top: 1px;
    left: 0;
}

.service-details-style3-bottom-text .list-items ul li .icon span {
    color: var(--thm-primary);
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
}



.service-details-sidebar-box-style2 {
    position: relative;
    display: block;
}

.service-details-sidebar-box-style2 .sidebar-download-box {
    padding-top: 55px;
}



/*---------------------------------------
    Faq Page One Css
  -----------------------------------------*/
.faq-page-one {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.faq-page-one .sec-title {
    padding-bottom: 43px;
}

.faq-page-one .sec-title .text {
    position: relative;
    display: block;
    padding-top: 10px;
}

.faq-page-one .sec-title .text p {
    color: #444444;
}


.faq-search-box {
    position: relative;
    display: block;
    max-width: 100%;
    width: 100%;
    margin-bottom: 60px;
}

.faq-search-box__inner {
    position: relative;
    display: block;
}

.faq-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.faq-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 60px;
    border-radius: 7px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.faq-search-box .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    height: 60px;
    font-size: 16px;
    line-height: 60px;
    display: block;
    text-align: center;
    border-radius: 0%;
    border: 0px solid #e7e7e8;
    transition: all 500ms ease 0s;
}

.faq-search-box .search-form button i {
    position: relative;
    top: 4px;
    color: var(--thm-black);
    font-size: 25px;
}

.faq-search-box .search-form input[type="text"]:focus {
    color: #000;
}


.faq-content-box {
    position: relative;
    display: block;
}



/*** 
  =============================================
      Faq Form Area Style      
  =============================================
  ***/
.faq-form-area {
    position: relative;
    display: block;
    background-color: #edf1f4;
    padding: 120px 0 120px;
    overflow: hidden;
    z-index: 10;
}

.faq-form-area-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    z-index: -1;
}




.faq-form-box {
    position: relative;
    display: block;
}

.faq-form-box .top-title {
    position: relative;
    display: block;
    margin-top: -9px;
    padding-bottom: 24px;
}

.faq-form-box .top-title h2 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 900;
}


.faq-form-box form {
    position: relative;
    display: block;
    max-width: 950px;
}

.faq-form-box form .input-box {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.faq-form-box form input[type="text"],
.faq-form-box form input[type="email"],
.faq-form-box form textarea {
    position: relative;
    display: block;
    background: transparent;
    width: 100%;
    height: 60px;
    border: 0px solid #e3e3e3;
    border-bottom: 2px solid #e3e3e3;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    padding-left: 0px;
    padding-right: 0px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.faq-form-box form textarea {
    height: 170px;
}

.faq-form-box form input[type="text"]:focus {
    color: #000000;
    border-color: var(--thm-base);
}

.faq-form-box form input[type="email"]:focus {
    color: #000000;
    border-color: var(--thm-base);
}

.faq-form-box form textarea:focus {
    color: #000000;
    border-color: var(--thm-base);
}


.faq-form-box form input[type="text"]::-webkit-input-placeholder {
    color: #444444;
}

.faq-form-box form input[type="text"]:-moz-placeholder {
    color: #444444;
}

.faq-form-box form input[type="text"]::-moz-placeholder {
    color: #444444;
}

.faq-form-box form input[type="text"]:-ms-input-placeholder {
    color: #444444;
}


.faq-form-box form input[type="email"]::-webkit-input-placeholder {
    color: #444444;
}

.faq-form-box form input[type="email"]:-moz-placeholder {
    color: #444444;
}

.faq-form-box form input[type="email"]::-moz-placeholder {
    color: #444444;
}

.faq-form-box form input[type="email"]:-ms-input-placeholder {
    color: #444444;
}


.faq-form-box form textarea::-webkit-input-placeholder {
    color: #444444;
}

.faq-form-box form textarea:-moz-placeholder {
    color: #444444;
}

.faq-form-box form textarea::-moz-placeholder {
    color: #444444;
}

.faq-form-box form textarea:-ms-input-placeholder {
    color: #444444;
}

.faq-form-box form .button-box {
    position: relative;
    display: block;
    padding-top: 5px;
}

.faq-form-box form .button-box button {}



/*** 
  =============================================
      Error Page Area Style      
  =============================================
  ***/
.error-page-area {
    position: relative;
    display: block;
    padding: 112px 0 120px;
    background: #ffffff;
    z-index: 10;
}

.error-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-content .big-title {
    position: relative;
    display: block;
    z-index: 1;
}

.error-content .big-title h2 {
    color: var(--thm-base);
    font-size: 72px;
    line-height: 70px;
    font-weight: 800;
    text-transform: uppercase;
}

.error-content .title {
    position: relative;
    display: block;
    padding-top: 23px;
    padding-bottom: 28px;
}

.error-content .title h2 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
}

.error-content .text {
    position: relative;
    display: block;
    padding-bottom: 29px;
}

.error-content .text p {
    margin: 0;
}

.error-page-search-box {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
}

.error-page-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.error-page-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    border-radius: 0px;
    background: #ffffff;
    border: 1px solid #f7f1eb;
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .1em;
    padding-left: 30px;
    padding-right: 60px;
    transition: all 500ms ease 0s;
    font-family: var(--thm-font);
}

.error-page-search-box .search-form button {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    background: var(--thm-base);
    color: #ffffff;
    font-size: 16px;
    line-height: 10px;
    display: block;
    text-align: center;
    border: 0px solid #e1e1e1;
    transition: all 500ms ease 0s;
}

.error-page-search-box .search-form button i {
    font-size: 16px
}

.error-page-search-box .search-form input[type="text"]:focus {
    color: var(--thm-primary);
    border-color: var(--thm-base);
}

.error-page-search-box .search-form input[type="text"]:focus+button,
.error-page-search-box .search-form button:hover {
    color: #fff;
}

.error-page-search-box .search-form input::-webkit-input-placeholder {
    color: #757575;
}

.error-page-search-box .search-form input:-moz-placeholder {
    color: #757575;
}

.error-page-search-box .search-form input::-moz-placeholder {
    color: #757575;
}

.error-page-search-box .search-form input:-ms-input-placeholder {
    color: #757575;
}

.error-content .btns-box {
    line-height: 0;
    padding-top: 20px;
}

.error-content .btns-box a {
    padding-left: 40px;
    padding-right: 40px;
}

.error-content .btns-box a:after {}








.elements-sec1 {
    margin-top: 0px;
}








/* Hidden Bar */
.hidden-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    direction: rtl;
    z-index: 99999;
}

.hidden-sidebar .wrapper-box {
    height: 100%;
}

.hidden-sidebar .content-wrapper {
    position: relative;
    display: block;
    direction: ltr;
    padding: 80px 40px;
    background-color: #0a1222;
}

.hidden-sidebar-close {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.10);
    width: 70px;
    height: 70px;
    color: #fff;
    font-size: 30px;
    line-height: 70px;
    text-align: center;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.hidden-sidebar-close:hover {
    color: var(--thm-base);
    background-color: #ffffff;
}

.hidden-sidebar .logo {
    margin-bottom: 35px;
}

.hidden-sidebar .logo a {
    position: relative;
    display: inline-block;
}

.hidden-sidebar .text-widget .text {
    color: #909398;
    font-size: 18px;
    margin-bottom: 0;
}



.hidden-sidebar .sidebar-widget {
    margin-bottom: 40px;
}

.pdf-widget {
    position: relative;
}

.pdf-widget .row {
    margin: 0 -7.5px;
}

.pdf-widget .column {
    padding: 0 7.5px;
}

.pdf-widget .content {
    position: relative;
    display: block;
    background-color: #fff;
    text-align: center;
    padding: 30px 10px;
    margin-bottom: 20px;
}

.pdf-widget .content .icon {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.pdf-widget .content .icon i {
    color: var(--thm-base);
    font-size: 40px;
    line-height: 40px;
}

.pdf-widget .content h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}



.contact-widget {
    position: relative;
}

.contact-widget .icon-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-widget .icon {
    position: relative;
    display: block;
    width: 40px;
    color: var(--thm-base);
    font-size: 20px;
    margin-top: 5px;
}

.contact-widget .icon.margintop {
    margin-top: 9px;
}

.contact-widget .text {
    color: #909398;
    line-height: 28px;
}

.contact-widget .text a {
    color: #909398;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-widget .text a:hover {
    color: #ffffff;
}

.contact-widget .text strong {
    position: relative;
    display: block;
    color: #fff;
    font-weight: 700;
    font-family: var(--thm-font-2);
}

.hidden-sidebar .link-btn {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 30px;
}



/* Cursor Style */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    display: none;
    background-color: rgba(var(--thm-base-rgb), .80);
    overflow: hidden;
    cursor: none;
    z-index: 999;
}

.cursor {
    position: absolute;
    background-color: #fff;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -o-transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    visibility: hidden;
}

.cursor {
    visibility: visible;
}

.cursor.active {
    opacity: 0.7;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.cursor.hovered {
    opacity: 0.08;
}

.cursor-follower {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -o-transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    visibility: hidden;
}

.cursor-follower {
    visibility: visible;
}

.cursor-follower.active {
    opacity: 0.7;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.cursor-follower.hovered {
    opacity: 0.08;
}

.cursor-follower.close-cursor:before {
    position: absolute;
    content: '';
    height: 25px;
    width: 2px;
    background: #fff;
    left: 48%;
    top: 12px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: inline-block;
}

.cursor-follower.close-cursor:after {
    position: absolute;
    content: '';
    height: 25px;
    width: 2px;
    background: #fff;
    right: 48%;
    top: 12px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}




#ui-datepicker-div.ui-widget-content {
    border: 1px solid #c5c5c5;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #777;
    color: #252525;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
    z-index: 999 !important;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: #151515 none repeat scroll 0 0;
    border: 2px solid #252525;
    border-radius: 0;
    color: #fff;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: #000000 !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #333333 !important;
    background: #333333 !important;
    color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: #fff;
    border: none;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
    background: #43c3ea;
    color: #fff;
    border-color: #43c3ea;
}






/*--------------------------------------------------------------
  # End Css 
  --------------------------------------------------------------*/
@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot');
    src: url('../fonts/icomoon.eot#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf') format('truetype'),
        url('../fonts/icomoon.woff') format('woff'),
        url('../images/icomoon.svg#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}










.icon-magnifying-glass:before {
    content: "\e900";
}

.icon-phone .path1:before {
    content: "\e901";
    color: rgb(254, 216, 67);
}

.icon-phone .path2:before {
    content: "\e902";
    margin-left: -1em;
    color: rgb(250, 190, 44);
}

.icon-phone .path3:before {
    content: "\e903";
    margin-left: -1em;
    color: rgb(255, 100, 26);
}

.icon-phone .path4:before {
    content: "\e904";
    margin-left: -1em;
    color: rgb(240, 56, 0);
}

.icon-phone .path5:before {
    content: "\e905";
    margin-left: -1em;
    color: rgb(97, 61, 92);
}

.icon-phone .path6:before {
    content: "\e906";
    margin-left: -1em;
    color: rgb(97, 61, 92);
}

.icon-phone .path7:before {
    content: "\e907";
    margin-left: -1em;
    color: rgb(75, 39, 70);
}

.icon-phone .path8:before {
    content: "\e908";
    margin-left: -1em;
    color: rgb(75, 39, 70);
}

.icon-menu:before {
    content: "\e909";
}

.icon-wish-list:before {
    content: "\e90a";
}

.icon-decrease:before {
    content: "\e90b";
}

.icon-ac:before {
    content: "\e90c";
}

.icon-air-cooler:before {
    content: "\e90d";
}

.icon-hot:before {
    content: "\e90e";
}

.icon-right:before {
    content: "\e90f";
}

.icon-right-1:before {
    content: "\e910";
}

.icon-log-out:before {
    content: "\e911";
}

.icon-air-conditioning:before {
    content: "\e912";
}

.icon-maintenance:before {
    content: "\e913";
}

.icon-air-conditioner:before {
    content: "\e914";
}

.icon-repair:before {
    content: "\e915";
}

.icon-right-2:before {
    content: "\e916";
}

.icon-left-arrow:before {
    content: "\e917";
}

.icon-next:before {
    content: "\e918";
}

.icon-happy:before {
    content: "\e919";
}

.icon-rating:before {
    content: "\e91a";
}

.icon-comment:before {
    content: "\e91b";
}

.icon-worker:before {
    content: "\e91c";
}

.icon-technology:before {
    content: "\e91d";
}

.icon-money:before {
    content: "\e91e";
}

.icon-project:before {
    content: "\e91f";
}

.icon-group:before {
    content: "\e920";
}

.icon-customer-satisfaction:before {
    content: "\e921";
}

.icon-branch:before {
    content: "\e922";
}

.icon-play:before {
    content: "\e923";
}

.icon-quotation:before {
    content: "\e924";
}

.icon-quote:before {
    content: "\e925";
}

.icon-caret-down:before {
    content: "\e926";
}

.icon-player:before {
    content: "\e927";
}

.icon-link:before {
    content: "\e928";
}

.icon-link-1:before {
    content: "\e929";
}

.icon-home-address:before {
    content: "\e92a";
}

.icon-open-envelope:before {
    content: "\e92b";
}

.icon-phone-1:before {
    content: "\e92c";
}

.icon-bars:before {
    content: "\e92d";
}

.icon-menu-bar:before {
    content: "\e92e";
}

.icon-response:before {
    content: "\e92f";
}

.icon-customer-service:before {
    content: "\e930";
}

.icon-review:before {
    content: "\e931";
}

.icon-guarantee:before {
    content: "\e932";
}

.icon-engineer:before {
    content: "\e933";
}

.icon-maintenance-1:before {
    content: "\e934";
}

.icon-maintenance-2:before {
    content: "\e935";
}

.icon-air-conditioning-1:before {
    content: "\e936";
}

.icon-skills:before {
    content: "\e937";
}

.icon-maps-and-flags:before {
    content: "\e938";
}

.icon-down-arrow .path1:before {
    content: "\e939";
    color: rgb(255, 209, 93);
}

.icon-down-arrow .path2:before {
    content: "\e93a";
    margin-left: -1em;
    color: rgb(249, 181, 76);
}

.icon-down-arrow .path3:before {
    content: "\e93b";
    margin-left: -1em;
    color: rgb(50, 74, 94);
}

.icon-down-arrow .path4:before {
    content: "\e93c";
    margin-left: -1em;
    color: rgb(43, 59, 78);
}

.icon-down-arrow-1:before {
    content: "\e93d";
    color: #fcbf49;
}

.icon-24-hours:before {
    content: "\e93e";
}

.icon-calendar:before {
    content: "\e93f";
}

.icon-calendar-1:before {
    content: "\e940";
}

.icon-on-time:before {
    content: "\e941";
}

.icon-clock:before {
    content: "\e942";
}

.icon-appointment:before {
    content: "\e943";
}

.icon-telephone:before {
    content: "\e944";
}

.icon-clock-1:before {
    content: "\e945";
}

.icon-arrow-right:before {
    content: "\e946";
}

.icon-check:before {
    content: "\e947";
}

.icon-check-mark:before {
    content: "\e948";
}

.icon-air-conditioning-2:before {
    content: "\e949";
}

.icon-telephone-1:before {
    content: "\e94a";
}

.icon-email:before {
    content: "\e94b";
}

.icon-phone-2:before {
    content: "\e94c";
}

.icon-telephone-2:before {
    content: "\e94d";
}

.icon-underfloor-heating:before {
    content: "\e94e";
}

.icon-fuel-pump:before {
    content: "\e94f";
}

.icon-furnace:before {
    content: "\e950";
}

.icon-blast-furnace:before {
    content: "\e951";
}

.icon-furnace-1:before {
    content: "\e952";
}

.icon-cremation:before {
    content: "\e953";
}

.icon-modern-house:before {
    content: "\e954";
}

.icon-cooling-system:before {
    content: "\e955";
}

.icon-home:before {
    content: "\e956";
}

.icon-technical:before {
    content: "\e957";
}

.icon-save-money:before {
    content: "\e958";
}

.icon-warranty:before {
    content: "\e959";
}

.icon-heater:before {
    content: "\e95a";
}

.icon-heater-1:before {
    content: "\e95b";
}

.icon-24-hours-1:before {
    content: "\e95c";
}

.icon-floor:before {
    content: "\e95d";
}

.icon-repair-1:before {
    content: "\e95e";
}

.icon-delivery-service:before {
    content: "\e95f";
}

.icon-service:before {
    content: "\e960";
}

.icon-right-arrow:before {
    content: "\e961";
}

.icon-location:before {
    content: "\e962";
}

.icon-mail:before {
    content: "\e963";
}

.icon-phone-call:before {
    content: "\e964";
}

.icon-working-hours:before {
    content: "\e965";
}

.icon-x-mark:before {
    content: "\e966";
}

.icon-checkmark:before {
    content: "\e967";
}

.icon-checked:before {
    content: "\e968";
}

.icon-download:before {
    content: "\e969";
}

.icon-factory:before {
    content: "\e96a";
}

.icon-factory-1:before {
    content: "\e96b";
}

.icon-air-conditioning-3:before {
    content: "\e96c";
}

.icon-maintenance-3:before {
    content: "\e96d";
}

.icon-air-conditioner-1:before {
    content: "\e96e";
}

.icon-best-seller:before {
    content: "\e96f";
}

.icon-quality:before {
    content: "\e970";
}

.icon-high-quality:before {
    content: "\e971";
}

.icon-plus:before {
    content: "\e972";
}

.icon-minus:before {
    content: "\e973";
}

.icon-down-arrow-2:before {
    content: "\e974";
}

.icon-cloud-computing:before {
    content: "\e975";
}

.icon-trust:before {
    content: "\e976";
}

.icon-reliability:before {
    content: "\e977";
}

.icon-loupe:before {
    content: "\e978";
}

.icon-zoom-in:before {
    content: "\e979";
}

.icon-quote-1:before {
    content: "\e97a";
}

.icon-left-quote:before {
    content: "\e97b";
}

.icon-right-arrow-1:before {
    content: "\e97c";
}

.icon-full-screen:before {
    content: "\e97d";
}

.icon-link-2:before {
    content: "\e97e";
}

.icon-close:before {
    content: "\e97f";
}

.icon-menu-1:before {
    content: "\e980";
}

.icon-allah .path1:before {
    content: "\e981";
    color: rgb(128, 210, 97);
}

.icon-allah .path2:before {
    content: "\e982";
    margin-left: -1em;
    color: rgb(104, 202, 68);
}

.icon-allah .path3:before {
    content: "\e983";
    margin-left: -1em;
    color: rgb(104, 202, 68);
}

.icon-allah .path4:before {
    content: "\e984";
    margin-left: -1em;
    color: rgb(128, 210, 97);
}

.icon-allah .path5:before {
    content: "\e985";
    margin-left: -1em;
    color: rgb(104, 202, 68);
}

.icon-allah .path6:before {
    content: "\e986";
    margin-left: -1em;
    color: rgb(128, 210, 97);
}

.icon-allah .path7:before {
    content: "\e987";
    margin-left: -1em;
    color: rgb(104, 202, 68);
}

.icon-allah .path8:before {
    content: "\e988";
    margin-left: -1em;
    color: rgb(104, 202, 68);
}

.icon-allah .path9:before {
    content: "\e989";
    margin-left: -1em;
    color: rgb(104, 202, 68);
}

.icon-allah .path10:before {
    content: "\e98a";
    margin-left: -1em;
    color: rgb(128, 210, 97);
}

.icon-allah .path11:before {
    content: "\e98b";
    margin-left: -1em;
    color: rgb(104, 202, 68);
}

.icon-allah .path12:before {
    content: "\e98c";
    margin-left: -1em;
    color: rgb(128, 210, 97);
}

.icon-allah .path13:before {
    content: "\e98d";
    margin-left: -1em;
    color: rgb(104, 202, 68);
}

.icon-allah .path14:before {
    content: "\e98e";
    margin-left: -1em;
    color: rgb(128, 210, 97);
}

.icon-allah .path15:before {
    content: "\e98f";
    margin-left: -1em;
    color: rgb(104, 202, 68);
}

.icon-allah .path16:before {
    content: "\e990";
    margin-left: -1em;
    color: rgb(0, 0, 0);
}

.icon-allah .path17:before {
    content: "\e991";
    margin-left: -1em;
    color: rgb(0, 0, 0);
}

.icon-allah .path18:before {
    content: "\e992";
    margin-left: -1em;
    color: rgb(0, 0, 0);
}

.icon-allah .path19:before {
    content: "\e993";
    margin-left: -1em;
    color: rgb(0, 0, 0);
}

.icon-allah .path20:before {
    content: "\e994";
    margin-left: -1em;
    color: rgb(0, 0, 0);
}

.icon-allah .path21:before {
    content: "\e995";
    margin-left: -1em;
    color: rgb(0, 0, 0);
}

.icon-allah .path22:before {
    content: "\e996";
    margin-left: -1em;
    color: rgb(0, 0, 0);
}

.icon-allah .path23:before {
    content: "\e997";
    margin-left: -1em;
    color: rgb(0, 0, 0);
}

.icon-allah .path24:before {
    content: "\e998";
    margin-left: -1em;
    color: rgb(0, 0, 0);
}

.icon-air-conditioner-2:before {
    content: "\e999";
}

.icon-air-conditioning-4:before {
    content: "\e99a";
}

.icon-plate-heat-exchangers:before {
    content: "\e99b";
}

.icon-technician:before {
    content: "\e99c";
}

.icon-circuit:before {
    content: "\e99d";
}

.icon-rating-1:before {
    content: "\e99e";
}

.icon-skyscrapers:before {
    content: "\e99f";
}

.icon-technician-1:before {
    content: "\e9a0";
}

.icon-sale:before {
    content: "\e9a1";
}

.icon-rating-2:before {
    content: "\e9a2";
}

.icon-rating-3:before {
    content: "\e9a3";
}

.icon-stopwatch:before {
    content: "\e9a4";
}

.icon-diagnostic:before {
    content: "\e9a5";
}

.icon-fast-time:before {
    content: "\e9a6";
}

.icon-phone-3:before {
    content: "\e9a7";
}

.icon-deadline:before {
    content: "\e9a8";
}

.icon-24-hours-2:before {
    content: "\e9a9";
}

.icon-24-hours-phone-service:before {
    content: "\e9aa";
}

.icon-call:before {
    content: "\e9ab";
}

.icon-tools:before {
    content: "\e9ac";
}

.icon-calling:before {
    content: "\e9ad";
}

.icon-heat:before {
    content: "\e9ae";
}

.icon-fan:before {
    content: "\e9af";
}

.icon-house:before {
    content: "\e9b0";
}

.icon-skyline:before {
    content: "\e9b1";
}

.icon-hand:before {
    content: "\e9b2";
}

.icon-draws:before {
    content: "\e9b3";
}

.wpcf7 .screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2;
    /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232;
    /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28;
    /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    /* Yellow */
}

.wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    /* Red */
    font-size: 1em;
    font-weight: normal;
    display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: relative;
    top: -2ex;
    left: 1em;
    z-index: 100;
    border: 1px solid #dc3232;
    background: #fff;
    padding: .2em .8em;
    width: 24em;
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
    content: " ";
}

.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #23282d;
    /* Dark Gray 800 */
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 24px;
    position: relative;
}

form.submitting .wpcf7-spinner {
    visibility: visible;
}

.wpcf7-spinner::before {
    content: '';
    position: absolute;
    background-color: #fbfbfc;
    /* Light Gray 100 */
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 100%;
    transform-origin: 8px 8px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}



@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    from {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.wpcf7 input[type="file"] {
    cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
    cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    direction: ltr;
}

.wpcf7-reflection>output {
    display: list-item;
    list-style: none;
}

.wpcf7-reflection>output[hidden] {
    display: none;
}


.aboutus-hero {}

.aboutus-hero-cont::before {
    content: "";
    background: url(../images/teamwork.jpg);
    position: absolute;
    z-index: -1;
    background-size: cover;
    width: 100%;
    background-position: center;
    height: 100%;
    top: 0;
    left: 0;
}

.aboutus-hero-cont {
    position: relative;

    text-align: center;
    padding: 100px 0;
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
    color: white;
}

.aboutus-hero-cont span {
    color: var(--thm-primary);
}

.aboutus-hero-head {}

.aboutus-hero .aboutus-hero-cont .aboutus-hero-subhead {
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 20px 0;
}

.aboutus-description {}

.aboutus-description-cont {
    width: 70%;
    margin: 60px auto;
    font-size: 1rem;
}

.aboutus-description .aboutus-description-cont p {
    letter-spacing: 1px;
    line-height: 1.8;
    margin: 5px 0;
}

.aboutus-features {
    padding: 0 0 60px;
}

.aboutus-features-cont {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.aboutus-features-card {
    width: 31%;
    text-align: center;
}

.aboutus-features-card .aboutus-features-card-img:hover img {

    border: 12px gainsboro solid;
    padding: 12px;
    border-radius: 50%;
    transition: 1s;
}

.aboutus-features-card-img img {
    border-radius: 20px;
    object-fit: cover;
    width: 20rem;
    height: 20rem;
    transition: 1s;
}


.aboutus-features-card-text {
    margin: 20px 0;
}

.aboutus-features-card-head {
    padding: 10px 0;
    position: relative;
}

.aboutus-features-card-head::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    background-color: #a22929;
    bottom: 3px;

    left: 46%;
}

.aboutus-features-card-head:hover {}

.aboutus-features-card-para {
    font-size: 0.9rem;
    margin: 20px 0;
    text-align: justify;
}

.about-founder {
    margin: 40px 0;
}

.about-founder-cont {
    width: 90%;
    margin: auto;
}

.about-founder-head {
    text-align: center;
    font-size: 2.2rem;
    line-height: 1;
}

.about-founder-head span {
    color: #005cb4;
}

.about-founder-head::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    background-color: #a22929;
    bottom: 3px;

    left: 46%;
}

.about-founder-details {
    gap: 80px;
    margin: 20px auto;
    display: flex;
    width: 80%;

    justify-content: space-between;

}

.about-founder-img {

    border-radius: 50%;
    object-fit: cover;
    width: 10rem;
    height: 10rem;
    overflow: clip;
    box-shadow: 0px 0px 10px #626378;
}

.about-founder-img img {

    width: 100%;
}

.about-founder-text {
    flex: auto;

}

.about-founder-text p {
    margin: 20px 0;
}

.contactus-hero-cont::before {
    content: "";
    position: absolute;
    background-color: #000000a8;
    z-index: -1;
    background-size: cover;
    width: 100%;
    background-position: center;
    height: 100%;
    top: 0;
    left: 0;

}

.contactus-hero-cont {
    position: relative;
    z-index: 2;
    background: url(../images/contactus-bg.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 150px 0;
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
    color: white;
}

.contactus-hero-tophead {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: gainsboro;

}

.contactus-hero-head {
    font-size: 4.5rem;
    margin: 10px 0;
}

.contactus-hero-subhead {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.services-hero-cont::before {
    content: "";
    background: url(../images/services-bg.jpg);
    position: absolute;
    z-index: -1;
    background-size: cover;
    width: 100%;
    background-position: center;
    height: 100%;
    top: 0;
    left: 0;

}

.services-hero-cont {
    position: relative;
    text-align: center;
    padding: 100px 0;
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
    color: white;
}

.services-hero-cont span {
    color: var(--thm-primary);
}

.services-hero .service-hero-cont .service-hero-subhead {
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 20px 0;
}

.services-description {}

.services-description-cont {
    display: flex;
    width: 90%;
    margin: 50px auto;
    justify-content: space-between;
}

.services-description-l {
    width: 38%;
}

.services-description-l img {
    width: 100%;
    animation: linear 4s infinite leftright;
}

/* 
@keyframes leftright {

    100%,
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-50px);
    }
} */

.services-decription-r {
    width: 58%;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 0.9rem;
}

.services-cards {
    background-color: whitesmoke;
    position: relative;
    z-index: -1;
}

.services-cards-cont {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
    gap: 50px;
    padding: 110px 0 50px;

}

.services-card {
    width: 30%;
    position: relative;

    border: #090d30 4px solid;
    padding: 17px 61px;
    background-color: white;
    margin: 40px 0;
}

.services-card-img {
    position: absolute;
    width: 250px;
    top: -82px;
    border-radius: 2px;
    left: -27px;
    border: 4px solid #dc3545;
    z-index: -1;
}

.services-card-details {}

.services-card-head {
    font-size: 1.4rem;
    font-weight: 700;
}

.services-card-description {
    margin: 10px 0;
}

.services-card-description p {
    font-size: 1rem;
}

.services-card-description p i {
    padding-right: 6px;
}

.services-card-btn {
    background-color: #090d30;
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
    position: absolute;
    right: 32px;
    bottom: -18px;
}

.service-hero {}

.service-hero-cont {
    width: 95%;
    background-image: url(../images/breadcrumb-1.jpg);
    background-position: center;
    background-size: cover;
    margin: 20px auto;
    color: white;
    padding: 100px 0;
    padding-left: 30px;
    border-top-right-radius: 35px;
    border-bottom-left-radius: 35px;
}

.service-hero-head {
    font-size: 4rem;
    line-height: 1;
    font-weight: 700;
}

.service-hero-subhead {
    font-weight: 500;
    margin: 20px;
}

.service-details {}

.service-details-cont {
    display: flex;
    width: 92%;
    margin: 40px auto;
    justify-content: space-between;
}

.service-details-l {
    width: 76%;
}

.service-detail-img {
    margin-bottom: 10px;
}

.service-detail-img img {
    width: 100%;
}

.service-detail-text p {
    margin: 13px;
}

.service-detail-bottom {
    display: flex;
    justify-content: space-evenly;
    margin: 20px 0;
}

.service-detail-bottom-l {
    width: 40%;
}

.service-detail-bottom-img {
    width: 100%;
}

.service-detail-bottom-r {
    width: 50%;
}

.service-detail-bottom-head {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.service-detail-bottom-text {
    font-size: 17px;
}

.service-detail-bottom-list {}

.service-detail-bottom-list ul li {
    position: relative;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 10px 25px;
}

.service-detail-bottom-list ul li::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 14px;
    background-color: #000;
    left: -29px;
    top: 15px;
}

.service-detail-cards {
    display: flex;
}

.service-card {
    display: flex;
    position: relative;
    width: 50%;
    padding: 30px;
    padding-bottom: 25px;
    border: 1px solid #80808069;
}

.service-card-l {
    width: 20%;
}

.service-card-img {
    width: 4rem;
}

.service-card-r {
    width: 80%;
}

.service-card-head {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: black;
}

.service-card-para {}

.service-details-faq {
    margin: 20px 0;
}

.service-detail-faq-head {
    font-size: 1.8rem;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 10px 0;
}

.active .accordion-head {
    color: red;
}

.active .accordion-head::before {
    color: red;
}

.active .accordion-para {
    display: block;
}

.accordion {
    padding: 20px 50px;
    border: 1px solid #80808069;
    margin: 10px 0;
}

.accordion-head::before {
    content: "-";
    position: absolute;
    left: -25px;
    font-size: 30px;
}

.accordion-head {
    position: relative;
    font-weight: 500;
}

.accordion-para {
    padding: 20px 0;
    display: none;
}

.service-details-r {
    width: 23%;
}

.service-detail-index {
    margin: 20px 0;
}

.service-index {
    color: black;
    background-color: #dcdcdc4f;
    /* text-align: center; */
    margin: 10px 0;
    padding: 10px 37px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 600ms;
    letter-spacing: 1px;
}

.service-index:hover {
    background-color: var(--thm-primary);
    color: white;
    padding-left: 5rem;
    transition: 500ms;
    position: relative;
}

.service-index:hover a {
    color: white;
}

.service-index::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 0;
    left: 48px;
    background-color: white;
    top: 24px;
    opacity: 0;
}

.service-index:hover::before {
    opacity: 1;
    transition: 500ms;
    width: 12px;
}

.service-detail-banner {
    background-color: #001b3b;
    color: white;
    padding-bottom: 30px;
}

.service-detail-banner-img::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 85px;
    background-color: var(--thm-base);
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    z-index: 2;
}

.service-detail-banner-img::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: -1px;
    height: 65px;
    background-color: #001b3b;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    z-index: 2;
}

.service-detail-banner-img {
    position: relative;
}

.service-detail-banner-para {
    font-size: 1.5rem;
    padding: 0 40px;
    font-weight: 400;
}

.service-detail-banner-para span {
    font-size: 1.6rem;
    margin: 10px 0;
    font-weight: 600;
}

.service-detail-banner-btn {
    background-color: var(--thm-base);
    padding: 10px 24px;
    width: fit-content;
    border-radius: 4px;
    margin: 20px 35px;
}

@media (max-width:1100px) {
    .services-card {
        width: 45%;
        padding: 10px 25px;
    }
}

@media (max-width:900px) {
    .service-details-cont {
        flex-wrap: wrap;
    }

    .service-details-l,
    .service-details-r {
        width: 90%;
        margin: auto;
    }
}

@media (max-width:768px) {

    .service-detail-bottom,
    .service-detail-cards {
        flex-wrap: wrap;
        gap: 10px;
    }

    .service-detail-bottom-l,
    .service-detail-bottom-r {
        width: 90%;
        margin: auto;

    }

    .service-card {
        width: 90%;
        margin: auto;
    }

    .service-hero-head {
        font-size: 3rem;
    }

    .services-card {
        width: 45%;
        padding: 10px 25px;
    }

    .services-description-l,
    .services-decription-r {
        width: 90%;
        margin: auto;
    }

    .services-description-cont {
        flex-wrap: wrap;
    }

    .aboutus-features {
        padding: 0 0 0px;
    }

    .aboutus-features-cont {
        flex-wrap: wrap;
    }

    .aboutus-features-card {
        width: 48%;
        margin: auto;
        height: 40rem;
    }

    .about-founder-details {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }
}

@media (max-width:520px) {
    .services-card {
        width: 85%;
        margin: 40px auto;
    }

    .aboutus-description-cont {
        width: 87%;
    }

    .aboutus-features-card {
        width: 90%;
    }

    .aboutus-features {
        padding: 0 0 0px;
    }
}

@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list>li>ul,
    .main-menu .main-menu__list>li>ul>li>ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list>li>ul,
    .stricky-header .main-menu__list>li>ul>li>ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

    /**
         * Remove all paddings around the image on small screen
         */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}

@media(max-width:1024px) {
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 1024px;
    }

    .e-con {
        --container-max-width: 1024px;
    }
}

@media(max-width:767px) {
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 767px;
    }

    .e-con {
        --container-max-width: 767px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media screen and (max-width: 767px) {
    .handle-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 40px;
        letter-spacing: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wpcf7-spinner::before {
        animation-name: blink;
        animation-duration: 2000ms;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {


    .main-menu .main-menu__list>li+li {
        margin-left: 30px;
    }

    .phone-number-box-style1 {
        margin-left: 10px;
        padding-left: 10px;
    }



    .choose-style1__content {
        max-width: 750px;
        width: 100%;
        float: right;
        padding-left: 80px;
    }



}



@media only screen and (min-width: 1200px) and (max-width: 1700px) {

    .cta-style5-area__inner {
        margin-left: 0px;
        margin-right: 0px;
        background: #dbe5f0;
    }

    .emergency-service-box {
        position: relative;
        left: 0;
        bottom: 0;
        right: 0;
        width: 470px;
        background: #c6d0dd;
        padding: 47px 40px 35px;
        margin: 0 auto;
    }

    .cta-style5-area__inner ul {
        border-top: 1px solid #090d30;
    }

    .cta-style5-area__inner ul li:last-child {
        border-right: none;
    }




    .contact-style2-content {
        margin-right: 0;
    }

    .contact-style2-area__inner {
        display: flex;
        flex-direction: column;
    }

    .contact-style2-area__inner:before {
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: #f9fbfd;
        border-bottom: 1px solid #e8ecef;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .video-gallery-style2 {
        width: 550px;
        height: 250px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
        margin: 0 auto;
    }



}



@media only screen and (min-width: 1200px) and (max-width: 1500px) {

    .sercvice-estimate-style1__img-outer .img-bg {
        width: 420px;
    }

    .sercvice-estimate-style1__right-box {
        margin-left: 0px;
    }




}




/* Medium screen  */
@media only screen and (min-width: 992px) and (max-width: 1199px) {


    .bottom-parallax {
        height: auto;
    }

    .bottom-parallax .footer-area {
        position: relative;
        height: auto;
    }

    .single-footer-widget.margin-leftminus1 {
        margin-left: 0px;
    }

    .single-footer-widget .our-company-info {
        padding-right: 0px;
    }




    .cta-style5-area__inner {
        margin-left: 0px;
        margin-right: 0px;
        background: #dbe5f0;
    }

    .emergency-service-box {
        position: relative;
        left: 0;
        bottom: 0;
        right: 0;
        width: 470px;
        background: #c6d0dd;
        padding: 47px 40px 35px;
        margin: 0 auto;
    }

    .cta-style5-area__inner ul {
        border-top: 1px solid #090d30;
    }

    .cta-style5-area__inner ul li:last-child {
        border-right: none;
    }




    .welcome-style1__content {
        margin-bottom: 60px;
    }

    .welcome-style1__img {
        padding-top: 120px;
        margin-left: 60px;
        margin-right: 0px;
        max-width: 400px;
    }




    .choose-style1__inner {
        padding: 0px 0 116px;
    }

    .choose-style1__img-bg {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        width: calc((100% - 0px) / 1);
        min-height: 580px;
        max-width: 690px;
        margin: 0 auto;
    }

    .choose-style1__content {
        max-width: 690px;
        width: 100%;
        float: none;
        padding-top: 60px;
        padding-left: 0px;
        margin: 0 auto;
    }



    .our-values-style1__img {
        margin-right: 0;
    }

    .our-values-style1__content {
        padding-top: 60px;
    }



    .fact-counter_box ul {
        align-items: center;
        justify-content: center;
    }

    .single-fact-counter {
        max-width: 320px;
    }



    .slogan-content-box {
        padding-right: 290px;
    }

    .slogan-content-box .inner-title h2 {
        font-size: 58px;
    }

    .slogan-content-box .inner-title h2 br {
        display: none;
    }



    .ACREX-form-style1 {
        margin-top: 50px;
        max-width: 100%;
        width: 100%;
        float: none;
        padding: 39px 30px 40px;
    }



    .team-style1-area__top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 49px;
    }

    .team-style1-area__top .text-box {
        margin-top: 24px;
        max-width: 100%;
        width: 100%;
    }



    .sercvice-estimate-style1 {
        padding: 0px 0 120px;
    }

    .sercvice-estimate-style1__img-outer {
        bottom: auto;
        max-width: 930px;
        width: 100%;
        height: 550px;
    }

    .sercvice-estimate-style1__img-outer .img-bg {
        width: 100%;
        background-size: auto;
        background-repeat: no-repeat;
        background-position: top center;
    }

    .sercvice-estimate-style1__content {
        padding-top: 600px;
        padding-left: 100px;
        padding-right: 100px;
        text-align: center;
    }

    .sercvice-estimate-style1__content .sec-title .sub-title {
        justify-content: center;
    }

    .sercvice-estimate-style1__right-box {
        padding-top: 50px;
        margin-left: 0;
    }

    .sercvice-estimate-style1__right-box ul li {
        margin: 0 auto;
    }



    .partner-area {
        padding-top: 50px;
        padding-bottom: 120px;
    }



    .single-cta-style3-box--style2 {
        padding-left: 30px;
    }

    .single-cta-style3-box .text p {
        font-size: 17px;
    }



    .single-service-style1.single-service-style1--style2 {
        margin-bottom: 30px;
    }

    .welcome-style2__more-services {
        padding-top: 21px;
    }



    .about-style1 {
        padding: 120px 0 113px;
    }

    .about-style1__img {
        margin-right: 30px;
    }

    .about-style1__content {
        padding-top: 60px;
    }



    .cta-style1-area__inner-img-bg {
        top: 0px;
        right: 0;
        width: calc(60% + 0px);
        height: calc(100% + 0px);
        background-color: var(--thm-base);
        background-blend-mode: luminosity;
        opacity: 0.5;
    }



    .testimonial-style1-title-box .sec-title h2 br {
        display: none;
    }

    .testimonial-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
        display: none;
    }



    .additional-services-style1__img {
        max-width: 500px;
        margin-top: 60px;
    }



    .contact-style1-area {
        padding: 120px 0 100px;
    }

    .contact-style1__content-box {
        max-width: 100%;
        margin-bottom: 40px;
    }



    .partner-area--style2 {
        padding-top: 0;
    }



    .service-areas-style1 {
        padding: 120px 0px 113px;
    }

    .service-areas-style1__title {
        padding-bottom: 39px;
    }




    .contact-style2-area {
        margin-top: 0;
    }

    .contact-style2-content {
        margin-right: 0;
    }

    .contact-style2-area__inner {
        display: flex;
        flex-direction: column;
        padding-top: 100px;
    }

    .contact-style2-area__inner:before {
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: #f9fbfd;
        border-bottom: 1px solid #e8ecef;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .video-gallery-style2 {
        width: 550px;
        height: 250px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
        margin: 0 auto;
    }

    .contact-style2-single-box {
        padding: 31px 25px 25px;
    }



    .welcome-style3__img {
        margin-left: 0px;
    }

    .welcome-style3__img ul {
        align-items: flex-end;
        justify-content: flex-start;
    }

    .welcome-style3__content {
        margin-top: 50px;
        margin-left: 0px;
    }



    .values-style3__content {
        padding-right: 0px;
    }



    .single-flixible-price-style1-box {
        margin-bottom: 24px;
    }

    .flixible-price-style1 .btns-box {
        padding-top: 29px;
    }



    .blog-style1-area.h3-pdb120 {
        padding-bottom: 120px;
    }



    .partner-area--style3 {
        padding-top: 0;
    }



    .welcome-style4__img {
        margin-left: 0px;
    }



    .features__content {
        padding-right: 0px;
    }

    .facts-content-box-style2 {
        margin-top: 50px;
    }




    .additional-services-style1.pdb {
        padding-bottom: 120px;
    }


    .slogan-style2-area {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .slogan-style2__content {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 52px 0px 60px;
        padding-right: 0;
        margin-right: 0px;
    }

    .slogan-style2-phone-number {
        margin-top: 34px;
    }



    .testimonials-style1-area.pdt {
        padding-top: 120px;
    }



    .partner-area.pdt00 {
        padding-top: 0;
    }



    .single-cta-style4-box {
        padding: 42px 0px 45px;
        padding-right: 0px;
    }

    .single-cta-style4-box__inner .icon {
        top: 13px;
    }



    .welcome-style6__img-box {
        margin-right: 0;
    }

    .welcome-style6__content-box {
        padding-top: 60px;
        padding-left: 0px;
    }



    .service-style6__top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 53px;
    }

    .service-style6__top .text-box {
        top: 0;
        max-width: 100%;
        width: 100%;
        padding-top: 20px;
    }



    .fact-counetr-video-area {
        padding: 120px 0 120px;
    }

    .video-gallery-style3-outer {
        width: 300px;
        float: none;
    }

    .video-gallery-style3-outer .video-gallery-style2 {
        width: 300px;
        height: 250px;
    }



    .benefits-style1 {
        padding: 120px 0 120px;
    }

    .benefits-style-1__content {
        margin-right: 0px;
    }

    .benefits-style-1__img-box {
        margin-right: 0px;
        margin-left: 0px;
    }



    .heating-system-style1__content {
        margin-top: 40px;
        padding-left: 0px;
    }



    .single-blog-style3 .text-holder .meta-box .meta-info {
        align-items: flex-start;
        flex-direction: column;
    }


    .footer-contact-info-box1 li+li {
        padding-left: 25px;
    }



    .sercvice-estimate-style2 .sercvice-estimate-style1__content {
        padding-top: 0px;
    }

    .sercvice-estimate-form form .input-box.margintop {
        margin-top: 30px;
    }

    .sercvice-estimate-style2__right-box {
        width: 270px;
        margin: 0 auto;
        padding-top: 40px;
    }



    .about-our-service {
        padding: 120px 0px 116px;
    }

    .about-our-service__list-item {
        margin-top: 37px;
        margin-left: 0px;
    }

    .about-our-service__list-item::before {
        display: none;
    }



    .service-details-page1__text2 .image {
        margin-right: 0px;
    }

    .service-details-page1__text2 .text {
        padding-top: 35px;
        padding-left: 0;
    }

    .service-details-page1__text3 .row li:last-child {
        margin-top: 20px;
        border-left: 1px solid #e9e9e9;
    }



    .service-details-page2-sec1 {
        padding: 120px 0 113px;
    }

    .service-details-page2-sec1__image {
        padding-right: 0px;
    }

    .service-details-page2-sec1__content {
        padding-top: 60px;
        padding-left: 0px;
    }



    .service-details-page2-sec2 {
        padding: 0px 0 117px;
    }

    .service-details-page2-sec2__image {
        padding-top: 120px;
        padding-right: 0px;
    }

    .service-details-page2-sec2__content {
        padding-top: 60px;
        padding-left: 0px;
    }



    .service-details-style3-bottom-text {
        margin-top: 50px;
    }

    .service-details-sidebar-box-style2 {
        max-width: 470px;
        margin-top: 81px;
    }

    .service-details-style3__content {
        padding-right: 0px;
    }



    .project-details-style1 {
        padding: 120px 0 90px;
    }

    .project-details-style1__content {
        padding-bottom: 73px;
    }



    .appointment-title h2 br {
        display: none;
    }



    .pricing-plan .pricing-plan__row {
        flex-direction: column-reverse;
    }

    .pricing-plan__content {
        padding-bottom: 10px;
    }

    .pricing-plan__img {
        min-height: auto;
    }

    .pricing-plan__img .inner {
        position: relative;
        left: 0;
        bottom: 0;
    }



    .tips-tricks-area .service-details-contact-info-box {
        max-width: 500px;
        margin-top: 88px;
    }



    .finance-style1 .service-details-contact-info-box {
        max-width: 500px;
        margin-top: 100px;
    }



    .testimonials-page-one__title {
        padding-bottom: 49px;
    }

    .testimonials-page-one__title .sec-title h2 br {
        display: none;
    }




    .faq-content-box.right {
        margin-top: 47px;
    }

    .faq-form-area-bg {
        background-size: cover;
        background-position: top right;
        background-color: var(--thm-base);
    }

    .faq-form-area-bg:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: var(--thm-black);
        opacity: 0.70;
    }

    .faq-form-box .top-title h2 {
        color: #ffffff;
    }

    .faq-form-box {
        position: relative;
        display: block;
        max-width: 570px;
    }

    .faq-form-box form input[type="text"]::-webkit-input-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="text"]:-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="text"]::-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="text"]:-ms-input-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="email"]::-webkit-input-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="email"]:-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="email"]::-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="email"]:-ms-input-placeholder {
        color: #ffffff;
    }

    .faq-form-box form textarea::-webkit-input-placeholder {
        color: #ffffff;
    }

    .faq-form-box form textarea:-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form textarea::-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form textarea:-ms-input-placeholder {
        color: #ffffff;
    }



    .blog-page-two .single-blog-style4 .text-holder .blog-title {
        font-size: 22px;
    }



    .blog-details-box {
        margin-right: 0px;
    }



    .contact-info-box-style1 {
        padding-top: 100px;
    }



    .breadcrumb-area-bg:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: #000000;
        opacity: 0.30;
        border-top-right-radius: 40px;
        border-bottom-left-radius: 40px;
    }

    .breadcrumb-area .title h2 {
        font-size: 50px;
        font-weight: 700;
    }

    .breadcrumb-area-bg {
        background-position: top right;
    }



    .single-fact-counter:nth-child(3) {
        padding-left: 0px;
    }

    .single-fact-counter:nth-child(3) .round-box {
        left: -20px;
    }

    .single-fact-counter:nth-child(4) {
        padding-left: 30px;
    }

    .single-fact-counter:nth-child(4) .round-box {
        left: 10px;
    }






















}







/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .bottom-parallax {
        height: auto;
    }

    .bottom-parallax .footer-area {
        position: relative;
        height: auto;
    }

    .single-footer-widget.margin-leftminus1 {
        margin-left: 0px;
    }

    .single-footer-widget .our-company-info {
        padding-right: 0px;
    }


    .footer-contact-info-box1 {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 0 40px;
    }

    .footer-contact-info-box1 li {
        flex: auto;
        width: 100%;
        padding: 0px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-contact-info-box1 li+li {
        padding-left: 0px;
        border: none;
        margin-top: 30px;
    }

    .footer-contact-info-box1__single {
        width: 300px;
    }



    .cta-style5-area__inner {
        margin-left: 0px;
        margin-right: 0px;
        background: #dbe5f0;
    }

    .emergency-service-box {
        position: relative;
        left: 0;
        bottom: 0;
        right: 0;
        width: 370px;
        background: #c6d0dd;
        padding: 47px 40px 35px;
        margin: 0 auto;
    }

    .cta-style5-area__inner ul {
        border-top: 1px solid #090d30;
    }

    .cta-style5-area__inner ul li:last-child {
        border-right: none;
    }



    .welcome-style1__content {
        margin-bottom: 60px;
    }

    .welcome-style1__content .sec-title h2 br {
        display: none;
    }

    .welcome-style1__img {
        padding-top: 120px;
        margin-left: 60px;
        margin-right: 0px;
        max-width: 400px;
    }



    .service-style1__top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 49px;
    }

    .service-style1__top .text-box {
        max-width: 100%;
        width: 100%;
        padding-top: 14px;
    }



    .choose-style1__inner {
        padding: 0px 0 116px;
    }

    .choose-style1__img-bg {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        width: calc((100% - 0px) / 1);
        min-height: 580px;
        max-width: 690px;
        margin: 0 auto;
    }

    .choose-style1__content {
        max-width: 690px;
        width: 100%;
        float: none;
        padding-top: 60px;
        padding-left: 0px;
        margin: 0 auto;
    }



    .our-values-style1__img {
        margin-right: 0;
    }

    .our-values-style1__content {
        padding-top: 60px;
    }



    .fact-counter_box ul {
        align-items: center;
        justify-content: center;
    }

    .single-fact-counter {
        max-width: 320px;
    }



    .slogan-area {
        padding: 116px 0 127px;
    }

    .slogan-content-box .video-gallery-style1 {
        position: relative;
        top: 0;
        right: 0;
        bottom: 0;
        margin-top: 37px;
        margin-left: 7px;
    }



    .ACREX-form-style1 {
        margin-top: 50px;
        max-width: 100%;
        width: 100%;
        float: none;
        padding: 39px 30px 40px;
    }



    .team-style1-area__top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 49px;
    }

    .team-style1-area__top .text-box {
        margin-top: 24px;
        max-width: 100%;
        width: 100%;
    }



    .sercvice-estimate-style1 {
        padding: 0px 0 120px;
    }

    .sercvice-estimate-style1__img-outer {
        bottom: auto;
        max-width: 930px;
        width: 100%;
        height: 550px;
    }

    .sercvice-estimate-style1__img-outer .img-bg {
        width: 100%;
        background-size: auto;
        background-repeat: no-repeat;
        background-position: top center;
    }

    .sercvice-estimate-style1__content {
        padding-top: 600px;
        padding-left: 60px;
        padding-right: 60px;
        text-align: center;
    }

    .sercvice-estimate-style1__content .sec-title .sub-title {
        justify-content: center;
    }

    .sercvice-estimate-style1__right-box {
        padding-top: 50px;
        margin-left: 0;
    }

    .sercvice-estimate-style1__right-box ul li {
        margin: 0 auto;
    }




    .blog-style1-area__top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 60px;
    }

    .blog-style1-area__top .btn-box {
        top: 0;
        padding-top: 29px;
    }



    .partner-area {
        padding-top: 50px;
        padding-bottom: 120px;
    }



    .cta-style3-area__bg-left {
        width: 100%;
        background-color: var(--thm-black);
    }

    .cta-style3-area__bg-right {
        display: none;
    }

    .single-cta-style3-box--style2 {
        padding-left: 0px;
        z-index: 1;
    }

    .single-cta-style3-box--style2:before {
        content: "";
        position: absolute;
        top: 0;
        left: -10000px;
        bottom: 0;
        right: -100000px;
        background-color: var(--thm-base);
        z-index: -1;
    }

    .single-cta-style3-box .text p br {
        display: none;
    }



    .single-service-style1.single-service-style1--style2 {
        margin-bottom: 30px;
    }

    .welcome-style2__more-services {
        padding-top: 21px;
    }



    .about-style1 {
        padding: 120px 0 113px;
    }

    .about-style1__img {
        margin-right: 30px;
    }

    .about-style1__content {
        padding-top: 60px;
    }



    .cta-style1-area__inner-img-bg {
        display: none;
    }



    .testimonial-style1-title-box .sec-title h2 br {
        display: none;
    }

    .testimonial-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
        display: none;
    }



    .additional-services-style1__img {
        max-width: 500px;
        margin-top: 50px;
    }



    .contact-style1-area {
        padding: 120px 0 100px;
    }

    .contact-style1__content-box {
        max-width: 100%;
        margin-bottom: 40px;
    }



    .partner-area--style2 {
        padding-top: 0;
    }



    .service-areas-style1 {
        padding: 120px 0px 113px;
    }

    .service-areas-style1__title {
        padding-bottom: 39px;
    }



    .contact-style2-area {
        margin-top: 0;
    }

    .contact-style2-content {
        margin-right: 0;
    }

    .contact-style2-area__inner {
        display: flex;
        flex-direction: column;
        padding-top: 100px;
    }

    .contact-style2-area__inner:before {
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: #f9fbfd;
        border-bottom: 1px solid #e8ecef;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .video-gallery-style2 {
        width: 550px;
        height: 250px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
        margin: 0 auto;
    }

    .contact-style2-single-box {
        padding: 31px 25px 25px;
    }

    .contact-style2-content ul {
        position: relative;
        display: block;
    }

    .contact-style2-content ul li {
        width: 100%;
        text-align: center;
    }



    .welcome-style3__img {
        margin-left: 0px;
    }

    .welcome-style3__img ul {
        align-items: flex-end;
        justify-content: flex-start;
    }

    .welcome-style3__content {
        margin-top: 50px;
        margin-left: 0px;
    }



    .values-style3__content {
        padding-right: 0px;
    }



    .single-flixible-price-style1-box {
        margin-bottom: 24px;
    }

    .flixible-price-style1 .btns-box {
        padding-top: 29px;
    }



    .blog-style1-area.h3-pdb120 {
        padding-bottom: 120px;
    }



    .partner-area--style3 {
        padding-top: 0;
    }



    .welcome-style4__img {
        margin-left: 0px;
    }



    .features__content {
        padding-right: 0px;
    }

    .facts-content-box-style2 {
        margin-top: 50px;
    }



    .additional-services-style1.pdb {
        padding-bottom: 120px;
    }


    .slogan-style2-area {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .slogan-style2__content {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 52px 0px 60px;
        padding-right: 0;
        margin-right: 0px;
    }

    .slogan-style2-phone-number {
        margin-top: 34px;
    }



    .testimonials-style1-area.pdt {
        padding-top: 120px;
    }



    .partner-area.pdt00 {
        padding-top: 0;
    }



    .cta-style4-area__bg {
        background-repeat: no-repeat;
        background-size: cover;
    }

    .single-cta-style4-box {
        padding: 42px 0px 45px;
        padding-right: 0px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.30);
    }

    .single-cta-style4-box__inner .icon {
        top: 13px;
    }



    .welcome-style6__img-box {
        margin-right: 0;
    }

    .welcome-style6__content-box {
        padding-top: 60px;
        padding-left: 0px;
    }



    .service-style6__top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 53px;
    }

    .service-style6__top .text-box {
        top: 0;
        max-width: 100%;
        width: 100%;
        padding-top: 20px;
    }



    .fact-counetr-video-area {
        padding: 120px 0 120px;
    }

    .fact-counetr-video__content .title-box h2 br {
        display: none;
    }

    .video-gallery-style3-outer {
        width: 300px;
        float: none;
    }

    .video-gallery-style3-outer .video-gallery-style2 {
        width: 300px;
        height: 250px;
    }



    .benefits-style1 {
        padding: 120px 0 120px;
    }

    .benefits-style-1__content {
        margin-right: 0px;
    }

    .benefits-style-1__img-box {
        margin-right: 0px;
        margin-left: 0px;
    }



    .heating-system-style1__content {
        margin-top: 40px;
        padding-left: 0px;
    }



    .sercvice-estimate-style2 .sercvice-estimate-style1__content {
        padding-top: 0px;
    }

    .sercvice-estimate-form form .input-box.margintop {
        margin-top: 30px;
    }

    .sercvice-estimate-style2__right-box {
        width: 270px;
        margin: 0 auto;
        padding-top: 40px;
    }



    .mission-content-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .mission-content-box .img-box {
        width: 100%;
    }

    .mission-content-box .text-box {
        margin-left: 0px;
        margin-right: 0px;
        padding: 30px 0 30px;
    }



    .about-our-service {
        padding: 120px 0px 116px;
    }

    .about-our-service__list-item {
        margin-top: 37px;
        margin-left: 0px;
    }

    .about-our-service__list-item::before {
        display: none;
    }



    .service-details-page1__text2 .image {
        margin-right: 0px;
    }

    .service-details-page1__text2 .text {
        padding-top: 35px;
        padding-left: 0;
    }

    .service-details-page1__text3 .row li:last-child {
        margin-top: 20px;
        border-left: 1px solid #e9e9e9;
    }

    .service-details-sidebar-box {
        margin-top: 100px;
    }

    .service-details-page1__content {
        padding-right: 0px;
    }

    .service-details-page1__content .text-box {
        padding-top: 35px;
    }



    .service-details-page2-sec1 {
        padding: 120px 0 113px;
    }

    .service-details-page2-sec1__image {
        padding-right: 0px;
    }

    .service-details-page2-sec1__content {
        padding-top: 50px;
        padding-left: 0px;
    }



    .service-details-page2-sec2 {
        padding: 0px 0 117px;
    }

    .service-details-page2-sec2__image {
        padding-top: 120px;
        padding-right: 0px;
    }

    .service-details-page2-sec2__content {
        padding-top: 60px;
        padding-left: 0px;
    }



    .service-details-style3-img-box .single-img-box {
        margin-bottom: 30px;
    }

    .service-details-style3-bottom-text {
        margin-top: 20px;
    }

    .service-details-sidebar-box-style2 {
        max-width: 470px;
        margin-top: 81px;
    }

    .service-details-style3__content {
        padding-right: 0px;
    }



    .project-details-style1 {
        padding: 120px 0 90px;
    }

    .project-details-style1__content {
        padding-bottom: 73px;
    }



    .appointment-title h2 br {
        display: none;
    }



    .single-offers-box .text-box h2 {
        font-size: 26px;
        line-height: 34px;
        font-weight: 700;
        margin: 0 0 7px;
    }



    .pricing-plan .pricing-plan__row {
        flex-direction: column-reverse;
    }

    .pricing-plan__content {
        padding-bottom: 10px;
    }

    .pricing-plan__img {
        min-height: auto;
    }

    .pricing-plan__img .inner {
        position: relative;
        left: 0;
        bottom: 0;
    }



    .tips-tricks-area .service-details-contact-info-box {
        max-width: 500px;
        margin-top: 88px;
    }



    .finance-style1 .service-details-contact-info-box {
        max-width: 500px;
        margin-top: 100px;
    }



    .testimonials-page-one__title {
        padding-bottom: 49px;
    }

    .testimonials-page-one__title .sec-title h2 br {
        display: none;
    }



    .faq-content-box.right {
        margin-top: 47px;
    }

    .faq-form-area-bg {
        background-size: cover;
        background-position: top right;
        background-color: var(--thm-base);
    }

    .faq-form-area-bg:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: var(--thm-black);
        opacity: 0.70;
    }

    .faq-form-box .top-title h2 {
        color: #ffffff;
    }

    .faq-form-box {
        position: relative;
        display: block;
        max-width: 570px;
    }

    .faq-form-box form input[type="text"]::-webkit-input-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="text"]:-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="text"]::-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="text"]:-ms-input-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="email"]::-webkit-input-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="email"]:-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="email"]::-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="email"]:-ms-input-placeholder {
        color: #ffffff;
    }

    .faq-form-box form textarea::-webkit-input-placeholder {
        color: #ffffff;
    }

    .faq-form-box form textarea:-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form textarea::-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form textarea:-ms-input-placeholder {
        color: #ffffff;
    }



    .blog-page-content {
        padding-right: 0px;
    }

    .thm-sidebar-box {
        margin-top: 100px;
    }




    .blog-details-area {
        padding: 120px 0 60px;
    }

    .blog-details-box {
        margin-right: 0px;
    }



    .contact-info-box-style1 {
        padding-top: 80px;
    }



    .breadcrumb-area-bg:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: #000000;
        opacity: 0.60;
        border-top-right-radius: 40px;
        border-bottom-left-radius: 40px;
    }

    .breadcrumb-area .title h2 {
        font-size: 50px;
        font-weight: 700;
    }

    .breadcrumb-area-bg {
        background-position: top right;
    }



    .single-fact-counter:nth-child(3) {
        padding-left: 0px;
    }

    .single-fact-counter:nth-child(3) .round-box {
        left: -20px;
    }

    .single-fact-counter:nth-child(4) {
        padding-left: 30px;
    }

    .single-fact-counter:nth-child(4) .round-box {
        left: 10px;
    }



























}








/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {

    .sec-title h2 br {
        display: none;
    }


    .bottom-parallax {
        height: auto;
    }

    .bottom-parallax .footer-area {
        position: relative;
        height: auto;
    }

    .single-footer-widget.margin-leftminus1 {
        margin-left: 0px;
    }

    .single-footer-widget .our-company-info {
        padding-right: 0px;
    }

    .single-footer-widget__img-box {
        margin-top: 30px;
        margin-left: 0px;
    }

    .footer-bottom .bottom-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 31px 0px 33px;
    }

    .footer-bottom-right {
        margin-top: 3px;
    }



    .footer-contact-info-box1 {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 0 40px;
    }

    .footer-contact-info-box1 li {
        flex: auto;
        width: 100%;
        padding: 0px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-contact-info-box1 li+li {
        padding-left: 0px;
        border: none;
        margin-top: 30px;
    }

    .footer-contact-info-box1__single {
        width: 300px;
    }




    .cta-style5-area {
        padding-top: 0px;
    }

    .cta-style5-area__inner {
        margin-left: 0px;
        margin-right: 0px;
        background: #dbe5f0;
    }

    .emergency-service-box {
        position: relative;
        left: 0;
        bottom: 0;
        right: 0;
        width: 300px;
        background: #c6d0dd;
        padding: 47px 20px 35px;
        margin: 0 auto;
    }

    .cta-style5-area__inner ul {
        border-top: 1px solid #090d30;
    }

    .cta-style5-area__inner ul li:last-child {
        border-right: none;
    }

    .cta-style5-area__inner ul li {
        width: 100%;
        border-right: 0px solid #090d30;
    }



    .welcome-style1__content {
        margin-bottom: 60px;
    }

    .welcome-style1__content .sec-title h2 br {
        display: none;
    }

    .welcome-style1__content--bottom {
        align-items: center;
        flex-direction: column;
        align-items: flex-start;
    }

    .welcome-style1__content--bottom .signature-box {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .welcome-style1__img {
        padding-top: 120px;
        margin-left: 0px;
        margin-right: 0px;
        max-width: 400px;
    }

    .awards-img-box {
        width: 100%;
    }

    .awards-img-box ul {
        align-items: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .awards-img-box ul li+li {
        margin-top: 30px;
        margin-left: 0px;
    }



    .service-style1__top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 49px;
    }

    .service-style1__top .text-box {
        max-width: 100%;
        width: 100%;
        padding-top: 14px;
    }



    .choose-style1__inner {
        padding: 0px 0 116px;
    }

    .choose-style1__img-bg {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        width: calc((100% - 0px) / 1);
        min-height: 580px;
        max-width: 690px;
        margin: 0 auto;
    }

    .choose-style1__content {
        max-width: 690px;
        width: 100%;
        float: none;
        padding-top: 60px;
        padding-left: 0px;
        margin: 0 auto;
    }



    .our-values-style1__content {
        padding-top: 60px;
    }

    .our-values-style1__img {
        margin-right: 0;
    }



    .fact-counter_box ul {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .single-fact-counter {
        max-width: 270px;
    }



    .slogan-area {
        padding: 116px 0 127px;
    }

    .slogan-content-box .video-gallery-style1 {
        position: relative;
        top: 0;
        right: 0;
        bottom: 0;
        margin-top: 37px;
        margin-left: 27px;
    }

    .slogan-content-box .inner-title h2 {
        font-size: 45px;
        margin: 22px 0 0;
    }

    .slogan-content-box .inner-title h2 br {
        display: none;
    }



    .ACREX-form-style1 {
        margin-top: 50px;
        max-width: 100%;
        width: 100%;
        float: none;
        padding: 39px 30px 40px;
    }


    .team-style1-area__top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 49px;
    }

    .team-style1-area__top .text-box {
        margin-top: 24px;
        max-width: 100%;
        width: 100%;
    }



    .sercvice-estimate-style1 {
        padding: 0px 0 120px;
    }

    .sercvice-estimate-style1__img-outer {
        bottom: auto;
        max-width: 930px;
        width: 100%;
        height: 550px;
    }

    .sercvice-estimate-style1__img-outer .img-bg {
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
    }

    .sercvice-estimate-style1__content {
        padding-top: 600px;
        padding-left: 0px;
        padding-right: 0px;
        text-align: center;
    }

    .sercvice-estimate-style1__content .sec-title .sub-title {
        justify-content: center;
    }

    .sercvice-estimate-style1__right-box {
        padding-top: 50px;
        margin-left: 0;
    }

    .sercvice-estimate-style1__right-box ul li {
        margin: 0 auto;
    }



    .blog-style1-area__top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 60px;
    }

    .blog-style1-area__top .btn-box {
        top: 0;
        padding-top: 29px;
    }



    .partner-area {
        padding-top: 50px;
        padding-bottom: 120px;
    }



    .cta-style3-area__bg-left {
        width: 100%;
        background-color: var(--thm-black);
    }

    .cta-style3-area__bg-right {
        display: none;
    }

    .single-cta-style3-box--style2 {
        padding-left: 0px;
        z-index: 1;
    }

    .single-cta-style3-box--style2:before {
        content: "";
        position: absolute;
        top: 0;
        left: -10000px;
        bottom: 0;
        right: -100000px;
        background-color: var(--thm-base);
        z-index: -1;
    }

    .single-cta-style3-box .text p br {
        display: none;
    }



    .welcome-style2 .sec-title p {
        padding: 0 0px;
    }

    .single-service-style1.single-service-style1--style2 {
        margin-bottom: 30px;
    }

    .welcome-style2__more-services {
        padding-top: 21px;
    }



    .about-style1 {
        padding: 120px 0 113px;
    }

    .about-style1__img {
        margin-right: 30px;
    }

    .about-style1__content {
        padding-top: 60px;
    }

    .features-box-style1 ul li {
        position: relative;
        display: block;
        float: none;
        width: 100%;
        padding-right: 0px;
    }

    .features-box-style1 ul li:last-child {
        padding-left: 0px;
        padding-right: 0;
        margin-top: 30px;
    }



    .project-style1-area__top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 139px;
    }

    .project-style1-area__top .sec-title .sub-title {
        justify-content: center;
    }

    .project-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
        left: 0;
        right: 0;
        text-align: center;
    }



    .cta-style1-area__inner {
        padding: 55px 30px 54px;
        padding-left: 30px;
        text-align: center;
    }

    .cta-style1-area__inner-img-bg {
        display: none;
    }

    .cta-style1-area__inner-content h3 a+a {
        margin-left: 20px;
    }

    .cta-style1-area__inner-content h2 {
        font-size: 32px;
        line-height: 40px;
        font-weight: 700;
    }




    .testimonial-style1-title-box .sec-title h2 br {
        display: none;
    }

    .testimonial-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
        display: none;
    }



    .additional-services-style1__img {
        max-width: 500px;
        margin-top: 60px;
    }



    .blog-style2-area__top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 60px;
    }

    .blog-style2-area__top .btn-box {
        margin-top: 15px;
        top: -0;
    }



    .contact-style1-area {
        padding: 120px 0 100px;
    }

    .contact-style1__content-box {
        max-width: 100%;
        margin-bottom: 40px;
    }



    .partner-area--style2 {
        padding-top: 0;
    }



    .service-areas-style1 {
        padding: 120px 0px 113px;
    }

    .service-areas-style1__title {
        padding-bottom: 39px;
    }



    .contact-style2-area {
        margin-top: 0;
    }

    .contact-style2-content {
        margin-right: 0;
    }

    .contact-style2-area__inner {
        display: flex;
        flex-direction: column;
        padding-top: 100px;
    }

    .contact-style2-area__inner:before {
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: #f9fbfd;
        border-bottom: 1px solid #e8ecef;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .video-gallery-style2 {
        width: 300px;
        height: 250px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
        margin: 0 auto;
    }

    .contact-style2-single-box {
        padding: 31px 25px 25px;
    }

    .contact-style2-content ul {
        position: relative;
        display: block;
    }

    .contact-style2-content ul li {
        width: 100%;
        text-align: center;
    }



    .welcome-style3__img {
        margin-left: 0px;
    }

    .welcome-style3__img ul {
        display: block;
    }

    .welcome-style3__img ul li {
        float: none;
    }

    .welcome-style3__img ul li:first-child .single-img-box {
        width: 100%;
    }

    .welcome-style3__img ul li .single-img-box img {
        width: 100%;
    }


    .welcome-style3__img ul li:last-child {
        margin-top: 20px;
    }

    .welcome-style3__img ul li:last-child .single-img-box {
        width: 100%;
    }


    .welcome-style3__content {
        margin-top: 50px;
        margin-left: 0px;
    }



    .values-style3__content {
        padding-right: 0px;
    }



    .single-flixible-price-style1-box {
        margin-bottom: 24px;
    }

    .flixible-price-style1 .btns-box {
        padding-top: 29px;
    }



    .blog-style1-area.h3-pdb120 {
        padding-bottom: 120px;
    }



    .partner-area--style3 {
        padding-top: 0;
    }



    .welcome-style4__img {
        margin-left: 0px;
    }

    .welcome-style4__img-top {
        top: 0;
        right: 0px;
    }

    .welcome-style4__img ul {
        display: block;
    }

    .welcome-style4__img ul li {
        float: none;
    }

    .welcome-style4__img ul li:first-child {
        padding-top: 140px;
        margin-bottom: 30px;
    }

    .welcome-style4__img ul li:first-child .single-img-box {
        width: 100%;
    }

    .welcome-style4__img ul li:last-child .single-img-box {
        width: 100%;
    }




    .features__content {
        padding-right: 0px;
    }

    .facts-content-box-style2 {
        margin-top: 50px;
        padding-left: 40px;
    }



    .additional-services-style1.pdb {
        padding-bottom: 120px;
    }


    .slogan-style2-area {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .slogan-style2__content {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 60px 0px 54px;
        padding-right: 0;
        margin-right: 0px;
        text-align: center;
    }

    .slogan-style2-phone-number {
        margin-top: 34px;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .slogan-style2-phone-number .text {
        margin-left: 0px;
    }

    .slogan-style2-title-box {
        padding-left: 0px;
    }

    .slogan-style2-title-box .title h2 {
        font-size: 30px;
        line-height: 40px;
        margin: 15px 0 11px;
    }

    .slogan-style2-title-box .icon {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
    }

    .slogan-style2-phone-number .text h2 {
        top: 0;
        font-size: 30px;
        line-height: 36px;
        margin: 19px 0 14px;
    }

    .slogan-style2-phone-number .text p {
        font-size: 20px;
        line-height: 28px;
    }



    .testimonials-style1-area.pdt {
        padding-top: 120px;
    }



    .partner-area.pdt00 {
        padding-top: 0;
    }


    .cta-style4-area__bg {
        background-repeat: no-repeat;
        background-size: cover;
    }

    .single-cta-style4-box {
        padding: 42px 0px 45px;
        padding-right: 0px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.30);
    }

    .single-cta-style4-box__inner .icon {
        top: 13px;
    }



    .about-style2-manager-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-style2-manager-box .right {
        width: 100%;
        margin-top: 30px;
    }

    .about-style2__manager-signature {
        padding-top: 40px;
    }


    .welcome-style6__img-box {
        margin-right: 0;
    }

    .welcome-style6__content-box {
        padding-top: 60px;
        padding-left: 0px;
    }



    .welcome-style6__content-box .customer-info {
        align-items: flex-start;
        flex-direction: column;
    }

    .welcome-style6__content-box .customer-info .outer {
        margin-top: 20px;
        margin-left: 0px;
    }



    .service-style6__top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 53px;
    }

    .service-style6__top .text-box {
        top: 0;
        max-width: 100%;
        width: 100%;
        padding-top: 20px;
    }

    .single-service-style6 {
        text-align: center;
        border: none;
    }



    .fact-counetr-video-area {
        padding: 120px 0 120px;
    }

    .fact-counetr-video__content .title-box h2 br {
        display: none;
    }

    .video-gallery-style3-outer {
        width: 300px;
        float: none;
    }

    .video-gallery-style3-outer .video-gallery-style2 {
        width: 300px;
        height: 250px;
    }



    .benefits-style1 {
        padding: 120px 0 120px;
    }

    .benefits-style-1__content {
        margin-right: 0px;
    }

    .benefits-style-1__content ul li {
        width: 100%;
        float: none;
        padding-right: 0px;
        margin-bottom: 41px;
    }

    .benefits-style-1__content ul li:before {
        display: none;
    }

    .benefits-style-1__img-box {
        margin-right: 0px;
        margin-left: 0px;
    }

    .benefits-style-1__img-box ul li {
        width: 100%;
        height: 285px;
        float: none;
    }

    .benefits-style-1__img-box ul li:nth-child(2) {
        margin-top: 0px;
    }

    .benefits-style-1__img-box ul li .single-box img {
        width: 100%;
    }



    .heating-system-style1__content {
        margin-top: 40px;
        padding-left: 0px;
    }

    .heating-system-style1__img-box .inner {
        width: 300px;
    }

    .heating-system-style1__img-box .single-item p {
        padding: 0 10px;
        font-size: 12px;
    }

    .heating-system-style1__img-box {
        max-width: 380px;
    }

    .heating-system-style1__img-box .single-item.three {
        right: 0px;
        bottom: 5px;
    }

    .heating-system-style1__img-box .single-item.four {
        top: 60px;
        left: 20px;
    }



    .single-blog-style3 .text-holder .meta-box .meta-info {
        align-items: flex-start;
        flex-direction: column;
    }



    .sercvice-estimate-style2 .sercvice-estimate-style1__content {
        padding-top: 0px;
    }

    .sercvice-estimate-form form .input-box.margintop {
        margin-top: 30px;
    }

    .sercvice-estimate-style2__right-box {
        width: 270px;
        margin: 0 auto;
        padding-top: 40px;
    }



    .mission-content-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .mission-content-box .img-box {
        width: 100%;
    }

    .mission-content-box .text-box {
        margin-left: 0px;
        margin-right: 0px;
        padding: 30px 0 30px;
    }



    .about-our-service {
        padding: 120px 0px 116px;
    }

    .about-our-service__list-item {
        margin-top: 37px;
        margin-left: 0px;
    }

    .about-our-service__list-item::before {
        display: none;
    }




    .breadcrumb-area-bg:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: #000000;
        opacity: 0.60;
        border-top-right-radius: 40px;
        border-bottom-left-radius: 40px;
    }

    .breadcrumb-area .title h2 {
        font-size: 50px;
        font-weight: 700;
    }



    .service-details-page1__text2 .image {
        margin-right: 0px;
    }

    .service-details-page1__text2 .text {
        padding-top: 35px;
        padding-left: 0;
    }

    .service-details-page1__text3 .row li:last-child {
        margin-top: 20px;
        border-left: 1px solid #e9e9e9;
    }

    .service-details-sidebar-box {
        margin-top: 100px;
    }

    .service-details-page1__content {
        padding-right: 0px;
    }

    .service-details-page1__content .text-box {
        padding-top: 35px;
    }



    .service-details-page2-sec1 {
        padding: 120px 0 113px;
    }

    .service-details-page2-sec1__image {
        padding-right: 0px;
    }

    .service-details-page2-sec1__content {
        padding-top: 50px;
        padding-left: 0px;
    }



    .service-details-page2-sec2 {
        padding: 0px 0 117px;
    }

    .service-details-page2-sec2__image {
        padding-top: 120px;
        padding-right: 0px;
    }

    .service-details-page2-sec2__content {
        padding-top: 60px;
        padding-left: 0px;
    }



    .service-details-style3__content {
        padding-right: 0px;
    }

    .service-details-style3-img-box .single-img-box {
        margin-bottom: 30px;
    }

    .service-details-style3-bottom-text {
        margin-top: 20px;
    }

    .service-details-sidebar-box-style2 {
        max-width: 470px;
        margin-top: 81px;
    }



    .project-details-style1 {
        padding: 120px 0 90px;
    }

    .project-details-style1__content {
        padding-bottom: 73px;
    }



    .appointment-title h2 br {
        display: none;
    }



    .single-offers-box {
        padding: 35px 20px 0px;
        padding-right: 20px;
    }

    .single-offers-box .img-box {
        position: relative;
        left: 0;
        bottom: 0px;
        right: 0;
        margin-top: 30px;
    }



    .pricing-plan .pricing-plan__row {
        flex-direction: column-reverse;
    }

    .pricing-plan__content {
        padding-bottom: 10px;
    }

    .pricing-plan__img {
        min-height: auto;
    }

    .pricing-plan__img .inner {
        position: relative;
        left: 0;
        bottom: 0;
    }

    .single-price-box {
        padding: 0px 30px 30px;
        padding-right: 30px;
    }



    .tips-tricks-area .service-details-contact-info-box {
        max-width: 500px;
        margin-top: 88px;
    }



    .finance-style1 .service-details-contact-info-box {
        max-width: 500px;
        margin-top: 100px;
    }

    .finance-style1__logo-box ul {
        align-items: flex-start;
        flex-direction: column;
    }

    .finance-style1__logo-box ul li+li {
        margin-top: 30px;
        margin-left: 0px;
    }



    .testimonials-page-one__title {
        padding-bottom: 49px;
    }

    .testimonials-page-one__title .sec-title h2 br {
        display: none;
    }



    .faq-content-box.right {
        margin-top: 47px;
    }

    .faq-form-area-bg {
        background-size: cover;
        background-position: top right;
        background-color: var(--thm-base);
    }

    .faq-form-area-bg:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: var(--thm-black);
        opacity: 0.70;
    }

    .faq-form-box .top-title h2 {
        color: #ffffff;
    }

    .faq-form-box {
        position: relative;
        display: block;
        max-width: 570px;
    }

    .faq-form-box form input[type="text"]::-webkit-input-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="text"]:-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="text"]::-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="text"]:-ms-input-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="email"]::-webkit-input-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="email"]:-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="email"]::-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form input[type="email"]:-ms-input-placeholder {
        color: #ffffff;
    }

    .faq-form-box form textarea::-webkit-input-placeholder {
        color: #ffffff;
    }

    .faq-form-box form textarea:-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form textarea::-moz-placeholder {
        color: #ffffff;
    }

    .faq-form-box form textarea:-ms-input-placeholder {
        color: #ffffff;
    }



    .error-content .big-title h2 {
        font-size: 62px;
        line-height: 60px;
    }




    .blog-page-content {
        padding-right: 0px;
    }

    .single-blog-style4 .img-holder .inner .overlay-icon a {
        font-size: 50px;
    }

    .single-blog-style4 .img-holder .inner .date-box {
        left: 10px;
        bottom: 10px;
        width: 70px;
        height: 75px;
    }

    .thm-sidebar-box {
        margin-top: 100px;
    }



    .blog-details-area {
        padding: 120px 0 60px;
    }

    .blog-details-box {
        margin-right: 0px;
    }

    .comment-box .single-comment-box {
        padding-left: 0px;
        min-height: auto;
    }

    .comment-box .single-comment-box .img-holder {
        position: relative;
    }

    .comment-box .single-comment-box .text-holder {
        margin-top: 19px;
        padding-left: 0px;
        min-height: auto;
    }

    .comment-box .single-comment-box--reply {
        margin-left: 30px;
    }



    .contact-info-box-style1 {
        padding-top: 80px;
    }



    .breadcrumb-area .inner-content {
        padding: 143px 0 143px;
    }

    .breadcrumb-area-bg {
        top: 0px;
        left: 0;
        bottom: 0px;
        right: 0;
        background-position: top right;
    }

    .breadcrumb-area__inner {
        padding: 0 0;
    }



    .single-fact-counter:nth-child(2) {
        padding-left: 0px;
    }

    .single-fact-counter:nth-child(2) .round-box {
        left: -20px;
    }

    .single-fact-counter:nth-child(3) {
        padding-left: 0px;
    }

    .single-fact-counter:nth-child(3) .round-box {
        left: -20px;
    }

    .single-fact-counter:nth-child(4) {
        padding-left: 0px;
    }

    .single-fact-counter:nth-child(4) .round-box {
        left: -20px;
    }





















}









/*--------------------------------------------------------------
////////////////////////////////
# Main Header All Responsice Css
////////////////////////////////
--------------------------------------------------------------*/

@media only screen and (min-width: 1200px) and (max-width: 1700px) {

    .main-menu-style6-left .main-menu-box {
        margin-left: 40px;
    }

    .main-header-style6 .main-menu-style6 .main-menu__list>li+li {
        margin-left: 20px;
    }




}


@media only screen and (min-width: 1200px) and (max-width: 1450px) {

    .main-menu-style6 .main-menu__wrapper .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .main-menu-style6-right .phone-number-box-style1--instyle2 {
        display: none;
    }


}



@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .main-menu .mobile-nav__toggler {
        display: inline-block;
        padding: 36px 0 35px;
    }


    .main-header-style3 .main-menu-style2 .container {
        max-width: 100%;
        padding: 0 20px;
    }



    .main-menu-style5 .main-menu__wrapper-inner {
        padding-left: 20px;
        padding-right: 20px;
    }




    .main-menu-style6 .main-menu__wrapper .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .main-menu-style6-right .phone-number-box-style1--instyle2 {
        display: none;
    }



    .main-header-style3 {
        padding: 10px 0;
    }












}


@media only screen and (min-width: 768px) and (max-width: 991px) {

    .main-menu .mobile-nav__toggler {
        display: inline-block;
        padding: 36px 0 35px;
    }



    .main-header-style2__top {
        display: none;
    }



    .main-header-style3 .main-menu-style2 .container {
        padding: 0 20px;
    }




    .main-menu-style5 .main-menu__wrapper-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-header-style5__top-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .main-header-style5-top-right {
        padding-top: 22px;
    }

    .header-contact-info-style1 ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .header-contact-info-style1 ul li {
        display: flex;
        align-items: center;
        float: none;
        margin-right: 0px;
        padding-right: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .header-contact-info-style1 ul li:before {
        display: none;
    }

    .header-contact-info-style1 ul li+li {
        margin-top: 15px;
    }



    .main-menu-style6 .main-menu__wrapper .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .main-menu-style6-right .phone-number-box-style1--instyle2 {
        display: none;
    }



    .main-header-style3 {
        padding: 10px 0;
    }














}




@media (max-width: 767px) {

    .main-menu .mobile-nav__toggler {
        display: inline-block;
        padding: 36px 0 35px;
    }


    .main-menu-style1-right .box-search-style1 {
        display: none;
    }

    .main-menu-style1-right .side-content-button {
        display: none;
    }

    .main-menu-style1-right .phone-number-box-style1 {
        display: none;
    }



    .main-header-style2__top {
        display: none;
    }

    .main-menu-style2-right .box-search-style1 {
        display: none;
    }

    .main-menu-style2-right .side-content-button-style2 {
        display: none;
    }



    .main-header-style3 .main-menu-style2 .container {
        padding: 0 20px;
    }



    .main-menu-style5 .main-menu__wrapper-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-header-style5__top-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .main-header-style5-top-right {
        padding-top: 22px;
    }

    .header-contact-info-style1 ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .header-contact-info-style1 ul li {
        display: flex;
        align-items: center;
        float: none;
        margin-right: 0px;
        padding-right: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .header-contact-info-style1 ul li:before {
        display: none;
    }

    .header-contact-info-style1 ul li+li {
        margin-top: 15px;
    }




    .main-menu-style6-left {
        width: 100%;
    }

    .main-menu-style6 .main-menu__wrapper .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .main-menu-style6-right .phone-number-box-style1--instyle2 {
        display: none;
    }

    .main-header-style6 .main-menu-style6 .box-search-style1 {
        display: none;
    }

    .main-menu-style6-left .main-menu-box {
        float: right;
        margin-right: 0;
        margin-left: auto;
    }

    .main-menu-style6-right {
        display: none;
    }



    .main-header-style3 {
        padding: 10px 0;
        background-color: rgba(0, 0, 0, 0.30);
    }

    .single-service-areas-style1 ul li {
        width: 49%;
    }

    .single-flixible-price-style1-box ul li {
        width: 100%;
    }

    .ACREX-comment-item .ACREX-comment-item {
        margin-left: 0px;
    }

}






/*--------------------------------------------------------------
///////////////////////////
# Slider All Responsice Css
///////////////////////////
--------------------------------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1600px) {}







@media only screen and (min-width: 1200px) and (max-width: 1600px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .banner-style1__inner-content {
        background-color: #000000;
    }

    .banner-style1 .banner-bg-slide {
        opacity: 0.50;
        background-size: cover;
    }

    .banner-style1__content {
        padding: 160px 0 170px;
    }



    .banner-style2__content-inner {
        padding: 270px 0 260px;
    }

    .banner-style2__content .big-title h2 {
        font-size: 50px;
        line-height: 1.2em;
        font-weight: 700;
    }

    .schedule-appointment-box .banner-style2__img-box img {
        opacity: 0.50;
    }



    .schedule-appointment-box--style2 .banner-style2__img-box {
        display: none;
    }

    .schedule-appointment-box--style2 .img-box {
        left: -100px;
        bottom: 20px;
    }



    .main-slider-style3 .container {
        padding-top: 300px;
        padding-bottom: 160px;
    }














}


@media only screen and (min-width: 768px) and (max-width: 991px) {

    .banner-style1__inner-content {
        background-color: #000000;
    }

    .banner-style1 .banner-bg-slide {
        opacity: 0.50;
        background-size: cover;
    }

    .banner-style1__content {
        padding: 160px 0 170px;
    }



    .banner-style2__content-inner {
        padding: 270px 0 260px;
    }

    .banner-style2__content .big-title h2 {
        font-size: 40px;
        line-height: 1.2em;
        font-weight: 700;
    }

    .schedule-appointment-box .banner-style2__img-box img {
        opacity: 0.50;
        width: 70%;
    }

    .schedule-appointment-box {
        bottom: 30px;
        right: 0;
        max-width: 670px;
    }




    .schedule-appointment-box--style2 {
        position: relative;
        max-width: 100%;
        bottom: 0px;
        right: 0;
    }

    .schedule-appointment-box--style2 .banner-style2__img-box {
        display: none;
    }

    .schedule-appointment-box--style2 .img-box {
        display: none;
    }

    .banner-style3__content-inner {
        max-width: 100%;
        width: 100%;
        padding: 146px 0 70px;
    }

    .schedule-appointment-box--style2 .schedule-appointment-box__form {
        max-width: 100%;
    }

    .banner-style3__content .big-title h2 br {
        display: none;
    }



    .main-slider-style3 .container {
        padding-top: 300px;
        padding-bottom: 160px;
    }













}



@media only screen and (max-width: 767px) {
    .main-slider__nav {
        display: none;
    }


    .banner-style1__inner-content {
        background-color: #000000;
        padding-left: 20px;
        padding-right: 20px;
    }

    .banner-style1__content-inner {
        max-width: 100%;
        width: 100%;
        float: none;
        padding-right: 0px;
    }

    .banner-style1__content {
        padding: 160px 0 170px;
    }

    .banner-style1 .banner-bg-slide {
        opacity: 0.50;
        background-size: cover;
    }

    .banner-style1__content .big-title h2 {
        font-size: 38px;
        line-height: 1.2em;
        font-weight: 700;
    }

    .banner-style1__content .big-title h2 br {
        display: none;
    }

    .banner-style1__content .btn-box a {
        padding-left: 25px;
        padding-right: 25px;
    }



    .main-slider .main-slider-content .big-title h2 {
        font-size: 45px;
    }

    .main-slider .main-slider-content .big-title h2 br {
        display: none;
    }

    .main-slider .main-slider-content .text p br {
        display: none;
    }

    .main-slider .main-slider-content .features-box ul {
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        flex-direction: column;
    }

    .main-slider .main-slider-content .features-box ul li {
        width: 200px;
        text-align: center;
    }

    .main-slider .main-slider-content .features-box ul li+li {
        margin-left: 0px;
        margin-top: 30px;
    }



    .banner-style2__content-inner {
        padding: 270px 0 100px;
        max-width: 100%;
    }

    .banner-style2__content .big-title h2 {
        font-size: 40px;
        line-height: 1.2em;
        font-weight: 700;
    }

    .banner-style2__content .big-title h2 br {
        display: none;
    }

    .schedule-appointment-box .banner-style2__img-box {
        display: none;
    }

    .schedule-appointment-box {
        position: relative;
        bottom: 0px;
        right: 0;
        max-width: 100%;
    }

    .schedule-appointment-box__form {
        max-width: 100%;
        width: 100%;
        float: none;
    }

    .banner-style2__content .btn-box .icon {
        display: none;
    }

    .schedule-appointment-box__form form .button-box button {
        width: 100%;
        border-radius: 0;
        padding: 0;
    }



    .main-slider-style2 .image-layer:before {
        background-color: #000000;
        opacity: 0.10;
        display: block;
    }

    .main-slider-style2 .main-slider-content__inner {
        margin-right: 0px;
    }




    .schedule-appointment-box--style2 {
        position: relative;
        max-width: 100%;
        bottom: 0px;
        right: 0;
    }

    .schedule-appointment-box--style2 .banner-style2__img-box {
        display: none;
    }

    .schedule-appointment-box--style2 .img-box {
        display: none;
    }

    .banner-style3__content-inner {
        max-width: 100%;
        width: 100%;
        padding: 146px 0 70px;
    }

    .schedule-appointment-box--style2 .schedule-appointment-box__form {
        max-width: 100%;
    }

    .banner-style3__content .big-title h2 br {
        display: none;
    }



    .main-slider-style3 .container {
        padding-top: 300px;
        padding-bottom: 160px;
    }

}

@media (max-width: 599px) {
    .single-service-areas-style1 ul li {
        width: 100%;
    }

    .single-flixible-price-style1-box ul li {
        width: 100%;
    }
}

.partner-area--style2 {
    background-color: #eff2f5;
    padding-top: 60px;
}section.mission-wrapper {
    padding-top: 60px;
}






.ex-grid-wrapper {
  padding: 50px 20px;
  background-color: #ffffff;
}

.ex-grid-wrapper  .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.ex-grid-wrapper .grid-item {
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    border: 2px solid #ff0000;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    width: 22%;
    color: #fff !important;
}

.ex-grid-wrapper  .grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border-color: #ff0000;
}

.ex-grid-wrapper  .grid-item svg {
  width: 50px;
  height: 50px;
  fill: #fff;
  margin-bottom: 12px;
}

.ex-grid-wrapper  .grid-item p {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 600px) {
 .ex-grid-wrapper  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
  }

 .ex-grid-wrapper  .grid-item {
    padding: 20px;
    border-width: 1px;
  }

 .ex-grid-wrapper  .grid-item svg {
    width: 40px;
    height: 40px;
  }

 .ex-grid-wrapper  .grid-item p {
    font-size: 16px;
  }
}.services-two .learn-more {
   
    display: none !important;
}
@media (max-width:767px){
    
    .main-slider .container {
    position: relative;
    padding-top: 43px;
    padding-bottom: 172px;
    z-index: 30;
}    .main-slider .main-slider-content .big-title h2 {
        font-size: 32px !important;
    }
.main-slider .container

 {
        position: relative;
        padding-top: 43px;
        padding-bottom: 58px;
        z-index: 30;
    }.swiper-container {
    height: 72vh;
}.about-style1 {
        padding: 38px 0 62px;
    }.hero2 h1 {
    font-size: 30px;
  
}.cta-btns {
    display: flex
;
    justify-content: center;
    gap: 20px;
    margin-top: 23px;
    flex-direction: column;
}.services-two {
    padding: 53px 0;
    background-color: #f0f7ff;
}
.services-two .services-grid {
    display: grid
;
  grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)) !important;
    gap: 40px;
}.ex-grid-wrapper .grid-item {
   
    width: 41%;
    color: #fff !important;
}
}

@media (max-width:767px){
    
    .logo-box img {
    width: 81px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-top: -9px;
}.main-slider .swiper-slide {
    position: relative;
    height: 250px !important;
}    .swiper-container {
        height: 100% !important;
    }.aboutus-hero-cont {
    position: relative;
    text-align: center;
    padding: 45px 0;
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
    color: white;
}.mission-wrapper .sustainable-image {
    flex: 1;
    min-width: 300px;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}.hero2 h1 {
    font-size: 23px;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}.hero2 p {
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 26px;
}.services-two {
    padding: 50px 0;
    background-color: #f0f7ff;
}.hero2 {
    background: linear-gradient(rgba(0, 45, 90, 0.85), rgba(0, 45, 90, 0.9)), url(https://images.unsplash.com/photo-1581091226033-d5c48150dbaa?ixlib=rb-4.0.3) center / cover;
    color: white;
    padding: 24px 0;
    text-align: center;
}
}